Skip to content
Permalink
1139b72d5e
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
36 lines (30 sloc) 775 Bytes
/*
* (C) 2001 Clemson University and The University of Chicago
*
* See COPYING in top-level directory.
*/
/* This is the master header file for pvfs2. It pulls in all header
* files needed by client side for software that operates at or above
* the system interface level.
*/
#ifndef __PVFS2_H
#define __PVFS2_H
#ifndef PVFS2_VERSION_MAJOR
#define PVFS2_VERSION_MAJOR @PVFS2_VERSION_MAJOR@
#define PVFS2_VERSION_MINOR @PVFS2_VERSION_MINOR@
#define PVFS2_VERSION_SUB @PVFS2_VERSION_SUB@
#endif
#include "pvfs2-types.h"
#include "pvfs2-sysint.h"
#include "pvfs2-debug.h"
#include "pvfs2-util.h"
#include "pvfs2-request.h"
#endif /* __PVFS2_H */
/*
* Local variables:
* c-indent-level: 4
* c-basic-offset: 4
* End:
*
* vim: ts=8 sts=4 sw=4 expandtab
*/