diff options
author | Christof Schmitt <cs@samba.org> | 2015-02-18 15:29:45 -0700 |
---|---|---|
committer | Christof Schmitt <cs@samba.org> | 2015-03-03 01:01:24 +0100 |
commit | 3c2cf5e0d637186f9b2855efc518f4a1cf4997a2 (patch) | |
tree | 5303e68f66e587aec7f1e1909123917beaba1008 | |
parent | a11fed1671a3f00506438b180d3b6c009093a04f (diff) | |
download | samba-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
-rw-r--r-- | source3/modules/gpfswrap.h | 5 |
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 |