gpfs: Add include guard to gpfswrap.h
authorChristof Schmitt <cs@samba.org>
Wed, 18 Feb 2015 22:29:45 +0000 (15:29 -0700)
committerChristof Schmitt <cs@samba.org>
Tue, 3 Mar 2015 00:01:24 +0000 (01:01 +0100)
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

source3/modules/gpfswrap.h

index 40b2c9e8da488cc6ac82e258788fc6ea25978ab3..d30b05f42212b782abe5b887b170b660455f6246 100644 (file)
@@ -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