diff options
author | Michael Adam <obnox@samba.org> | 2011-05-31 00:19:22 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2011-05-31 01:44:27 +0200 |
commit | 447f0d356b4cef3e8501923d040146e782022d44 (patch) | |
tree | e04c8830ae48ea9b558eb6341178cfcfc38c628f /source3/groupdb/proto.h | |
parent | f2cbced75e33c5467672b8eb5c9bc2fc82a2f7da (diff) | |
download | samba-447f0d356b4cef3e8501923d040146e782022d44.tar.gz samba-447f0d356b4cef3e8501923d040146e782022d44.tar.bz2 samba-447f0d356b4cef3e8501923d040146e782022d44.zip |
s3:groupdb/proto.h: add _GROUPDB_PROTO_H_ guard
Diffstat (limited to 'source3/groupdb/proto.h')
-rw-r--r-- | source3/groupdb/proto.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/source3/groupdb/proto.h b/source3/groupdb/proto.h index bc27d13558..db07d4d64f 100644 --- a/source3/groupdb/proto.h +++ b/source3/groupdb/proto.h @@ -21,6 +21,9 @@ * along with this program; if not, see <http://www.gnu.org/licenses/>. */ +#ifndef _GROUPDB_PROTO_H_ +#define _GROUPDB_PROTO_H_ + /* The following definitions come from groupdb/mapping.c */ NTSTATUS add_initial_entry(gid_t gid, const char *sid, enum lsa_SidType sid_name_use, const char *nt_name, const char *comment); @@ -95,3 +98,5 @@ NTSTATUS pdb_create_builtin_alias(uint32 rid); /* The following definitions come from groupdb/mapping_tdb.c */ const struct mapping_backend *groupdb_tdb_init(void); + +#endif /* _GROUPDB_PROTO_H_ */ |