diff options
author | Martin Schwenke <martin@meltin.net> | 2014-09-22 19:31:23 +1000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2014-10-04 00:11:20 +0200 |
commit | 1f0e5cb38c6d444d33b7736d43a32439cdf04d81 (patch) | |
tree | 2377bb2d3591762a7a79de9acc8ce7db53930058 /lib/util/data_blob.c | |
parent | 2d7dfe3d68c39f11afdece3281f9fbca0b48fb3f (diff) | |
download | samba-1f0e5cb38c6d444d33b7736d43a32439cdf04d81.tar.gz samba-1f0e5cb38c6d444d33b7736d43a32439cdf04d81.tar.xz samba-1f0e5cb38c6d444d33b7736d43a32439cdf04d81.zip |
lib/util: Clean up includes for data_blob.[ch]
Allows standalone compile without external includes.h.
Signed-off-by: Martin Schwenke <martin@meltin.net>
Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'lib/util/data_blob.c')
-rw-r--r-- | lib/util/data_blob.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/util/data_blob.c b/lib/util/data_blob.c index 10864a025b..1b0e6ab35a 100644 --- a/lib/util/data_blob.c +++ b/lib/util/data_blob.c @@ -18,7 +18,9 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#include "includes.h" +#include "replace.h" +#include "attr.h" +#include "data_blob.h" const DATA_BLOB data_blob_null = { NULL, 0 }; |