summaryrefslogtreecommitdiff
path: root/PACE/pace/fcntl.h
diff options
context:
space:
mode:
Diffstat (limited to 'PACE/pace/fcntl.h')
-rw-r--r--PACE/pace/fcntl.h60
1 files changed, 0 insertions, 60 deletions
diff --git a/PACE/pace/fcntl.h b/PACE/pace/fcntl.h
deleted file mode 100644
index 8e7b496d27e..00000000000
--- a/PACE/pace/fcntl.h
+++ /dev/null
@@ -1,60 +0,0 @@
-/* $Id$
-
- * ============================================================================
- *
- * = LIBRARY
- * pace
- *
- * = FILENAME
- * fnctl.h
- *
- * = AUTHOR
- * Luther Baker
- *
- * ============================================================================ */
-
-
-#ifndef PACE_FCNTL_H
-#define PACE_FCNTL_H
-
-
-#include "pace/defines.h"
-#include "pace/sys/types.h"
-#include "pace/unistd.h"
-#include <sys/stat.h>
-#include <fcntl.h>
-
-
-
-# if defined (PACE_HAS_CPLUSPLUS)
-extern "C" {
-# endif /* PACE_HAS_CPLUSPLUS */
-
- PACE_INLINE int pace_creat (const char * path, pace_mode_t mode);
-
- # define pace_fcntl(X) fcntl X
- /* int fcntl (int fildes, int cmd, *//* arg *//* ... );
- *
- * PLEASE PAY SPECIAL ATTENTION HERE!
- * This is a macro and requires an additional set of parenthesis
- * surrounding the arguments.
- */
-
- # define pace_open(X) open X
- /* int open (const char *path, int oflag, *//* pace_mode_t mode *//* ... );
- *
- * PLEASE PAY SPECIAL ATTENTION HERE!
- * This is a macro and requires an additional set of parenthesis
- * surrounding the arguments.
- */
-
-# if defined (PACE_HAS_CPLUSPLUS)
-}
-# endif /* PACE_HAS_CPLUSPLUS */
-
-# if defined (PACE_HAS_INLINE)
-# include "fcntl.inl"
-# endif /* PACE_HAS_INLINE */
-
-
-#endif /* PACE_FCNTL_H */