lib/util: Clean up includes for data_blob.[ch]
authorMartin Schwenke <martin@meltin.net>
Mon, 22 Sep 2014 09:31:23 +0000 (19:31 +1000)
committerJeremy Allison <jra@samba.org>
Fri, 3 Oct 2014 22:11:20 +0000 (00:11 +0200)
Allows standalone compile without external includes.h.

Signed-off-by: Martin Schwenke <martin@meltin.net>
Reviewed-by: Jeremy Allison <jra@samba.org>
lib/util/data_blob.c
lib/util/data_blob.h

index 10864a025bbdb8a0913e0ccd591911324771e811..1b0e6ab35af8139c0b9b65a08df1a58104c9c02d 100644 (file)
@@ -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 };
 
index 09a9292aeda0c99a8ea234eaaaedb17f6b0bf747..a5caa925dc262adbcf95e23d4abdd28f07133f7c 100644 (file)
@@ -31,6 +31,7 @@
 #endif
 
 #include <talloc.h>
+#include <stdbool.h>
 #include <stdint.h>
 
 /* used to hold an arbitrary blob of data */