summaryrefslogtreecommitdiff
path: root/PACE/pace/sys/stat.h
diff options
context:
space:
mode:
Diffstat (limited to 'PACE/pace/sys/stat.h')
-rw-r--r--PACE/pace/sys/stat.h53
1 files changed, 0 insertions, 53 deletions
diff --git a/PACE/pace/sys/stat.h b/PACE/pace/sys/stat.h
deleted file mode 100644
index cac798c1a2f..00000000000
--- a/PACE/pace/sys/stat.h
+++ /dev/null
@@ -1,53 +0,0 @@
-/* $Id$
-
- * ============================================================================
- *
- * = LIBRARY
- * pace
- *
- * = FILENAME
- * stat.h
- *
- * = AUTHOR
- * Luther Baker
- *
- * ============================================================================ */
-
-
-#ifndef PACE_SYS_STAT_H
-#define PACE_SYS_STAT_H
-
-
-#include "pace/defines.h"
-#include "pace/sys/types.h"
-#include <sys/stat.h>
-
-
-# if defined (PACE_HAS_CPLUSPLUS)
-extern "C" {
-# endif /* PACE_HAS_CPLUSPLUS */
-
- PACE_INLINE int pace_chmod (const char * path, mode_t mode);
-
- PACE_INLINE int pace_fchmod (int fildes, mode_t mode);
-
- PACE_INLINE int pace_fstat (int fildes, struct stat * buf);
-
- PACE_INLINE int pace_mkdir (const char * path, mode_t mode);
-
- PACE_INLINE int pace_mkfifo (const char * path, mode_t mode);
-
- PACE_INLINE int pace_stat (const char * path, struct stat * buf);
-
- PACE_INLINE mode_t pace_umask (mode_t cmask);
-
-# if defined (PACE_HAS_CPLUSPLUS)
-}
-# endif /* PACE_HAS_CPLUSPLUS */
-
-# if defined (PACE_HAS_INLINE)
-# include "stat.inl"
-# endif /* PACE_HAS_INLINE */
-
-
-#endif /* PACE_SYS_STAT_H */