1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-12 09:18:10 +03:00

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
This commit is contained in:
Christof Schmitt 2015-02-18 15:29:45 -07:00
parent a11fed1671
commit 3c2cf5e0d6

View 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