1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

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>
This commit is contained in:
Martin Schwenke 2014-09-22 19:31:23 +10:00 committed by Jeremy Allison
parent 2d7dfe3d68
commit 1f0e5cb38c
2 changed files with 4 additions and 1 deletions

View 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 };

View File

@ -31,6 +31,7 @@
#endif
#include <talloc.h>
#include <stdbool.h>
#include <stdint.h>
/* used to hold an arbitrary blob of data */