summaryrefslogtreecommitdiffstats
path: root/source3
diff options
context:
space:
mode:
authorChristof Schmitt <cs@samba.org>2015-02-18 15:29:45 -0700
committerChristof Schmitt <cs@samba.org>2015-03-03 01:01:24 +0100
commit3c2cf5e0d637186f9b2855efc518f4a1cf4997a2 (patch)
tree5303e68f66e587aec7f1e1909123917beaba1008 /source3
parenta11fed1671a3f00506438b180d3b6c009093a04f (diff)
downloadsamba-3c2cf5e0d637186f9b2855efc518f4a1cf4997a2.tar.gz
samba-3c2cf5e0d637186f9b2855efc518f4a1cf4997a2.tar.xz
samba-3c2cf5e0d637186f9b2855efc518f4a1cf4997a2.zip
gpfs: Add include guard to gpfswrap.h
Signed-off-by: Christof Schmitt <cs@samba.org> Reviewed-by: Ralph Böhme <slow@samba.org> Autobuild-User(master): Christof Schmitt <cs@samba.org> Autobuild-Date(master): Tue Mar 3 01:01:25 CET 2015 on sn-devel-104
Diffstat (limited to 'source3')
-rw-r--r--source3/modules/gpfswrap.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/source3/modules/gpfswrap.h b/source3/modules/gpfswrap.h
index 40b2c9e8da..d30b05f422 100644
--- a/source3/modules/gpfswrap.h
+++ b/source3/modules/gpfswrap.h
@@ -21,6 +21,9 @@
* along with this program; if not, see <http://www.gnu.org/licenses/>.
*/
+#ifndef __GPFSWRAP_H__
+#define __GPFSWRAP_H__
+
#include <gpfs_fcntl.h>
int gpfswrap_init(void);
@@ -41,3 +44,5 @@ int gpfswrap_set_times_path(char *pathname, int flags,
int gpfswrap_quotactl(char *pathname, int cmd, int id, void *bufp);
int gpfswrap_fcntl(int fd, void *argp);
int gpfswrap_getfilesetid(char *pathname, char *name, int *idp);
+
+#endif