From ff82f77796f0d867089962f7970efbe53c51289d Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Tue, 31 May 2011 00:10:29 +0200 Subject: s3:locking/proto.h: add _LOCKING_PROTO_H_ guard --- source3/locking/proto.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/source3/locking/proto.h b/source3/locking/proto.h index 2726a1df25..b7c8990b1a 100644 --- a/source3/locking/proto.h +++ b/source3/locking/proto.h @@ -20,6 +20,9 @@ * along with this program. If not, see . */ +#ifndef _LOCKING_PROTO_H_ +#define _LOCKING_PROTO_H_ + /* The following definitions come from locking/brlock.c */ bool brl_same_context(const struct lock_context *ctx1, @@ -220,3 +223,5 @@ bool release_posix_lock_posix_flavour(files_struct *fsp, const struct lock_context *lock_ctx, const struct lock_struct *plocks, int num_locks); + +#endif /* _LOCKING_PROTO_H_ */ -- cgit