summaryrefslogtreecommitdiff
path: root/data_blob.h
diff options
context:
space:
mode:
authorJeff Layton <jlayton@samba.org>2017-02-23 19:14:07 -0500
committerJeff Layton <jlayton@samba.org>2017-02-24 07:12:14 -0500
commit891d7806ac153e7d99b324ed9a33ff92699a92c6 (patch)
treebe26e62847992e09d6de79b5611d68129bd463c5 /data_blob.h
parent4850d321c3ec8f1b31b162fe8a316a7638c12b94 (diff)
downloadcifs-utils-891d7806ac153e7d99b324ed9a33ff92699a92c6.tar.gz
cifs-utils-891d7806ac153e7d99b324ed9a33ff92699a92c6.tar.bz2
cifs-utils-891d7806ac153e7d99b324ed9a33ff92699a92c6.zip
data_blob: Eliminate _PUBLIC_
It's defined to nothing anyway. Signed-off-by: Jeff Layton <jlayton@samba.org>
Diffstat (limited to 'data_blob.h')
-rw-r--r--data_blob.h10
1 files changed, 3 insertions, 7 deletions
diff --git a/data_blob.h b/data_blob.h
index ccdf30d..3d96147 100644
--- a/data_blob.h
+++ b/data_blob.h
@@ -23,10 +23,6 @@
#ifndef _SAMBA_DATABLOB_H_
#define _SAMBA_DATABLOB_H_
-#ifndef _PUBLIC_
-#define _PUBLIC_
-#endif
-
#include <talloc.h>
#include <stdint.h>
@@ -53,17 +49,17 @@ struct data_blob_list_item {
construct a data blob, must be freed with data_blob_free()
you can pass NULL for p and get a blank data blob
**/
-_PUBLIC_ DATA_BLOB data_blob_named(const void *p, size_t length, const char *name);
+DATA_BLOB data_blob_named(const void *p, size_t length, const char *name);
/**
construct a data blob, using supplied TALLOC_CTX
**/
-_PUBLIC_ DATA_BLOB data_blob_talloc_named(TALLOC_CTX *mem_ctx, const void *p, size_t length, const char *name);
+DATA_BLOB data_blob_talloc_named(TALLOC_CTX *mem_ctx, const void *p, size_t length, const char *name);
/**
free a data blob
**/
-_PUBLIC_ void data_blob_free(DATA_BLOB *d);
+void data_blob_free(DATA_BLOB *d);
extern const DATA_BLOB data_blob_null;