summaryrefslogtreecommitdiff
path: root/PACE/pace/win32/stat.inl
diff options
context:
space:
mode:
Diffstat (limited to 'PACE/pace/win32/stat.inl')
-rw-r--r--PACE/pace/win32/stat.inl63
1 files changed, 0 insertions, 63 deletions
diff --git a/PACE/pace/win32/stat.inl b/PACE/pace/win32/stat.inl
deleted file mode 100644
index 3ea736dda6e..00000000000
--- a/PACE/pace/win32/stat.inl
+++ /dev/null
@@ -1,63 +0,0 @@
-/* $Id$ -*- C -*-
-
- * =============================================================================
- *
- * = LIBRARY
- * pace
- *
- * = FILENAME
- * pace/win32/stat.inl
- *
- * = AUTHOR
- * Luther Baker
- *
- * ============================================================================= */
-
-PACE_INLINE
-int
-pace_chmod (const char * path, pace_mode_t mode)
-{
- return chmod (path, mode);
-}
-
-PACE_INLINE
-int
-pace_fchmod (int fildes, pace_mode_t mode)
-{
- return fchmod (fildes, mode);
-}
-
-PACE_INLINE
-int
-pace_fstat (int fildes, struct stat * buf)
-{
- return fstat (fildes, buf);
-}
-
-PACE_INLINE
-int
-pace_mkdir (const char * path, pace_mode_t mode)
-{
- return mkdir (path, mode);
-}
-
-PACE_INLINE
-int
-pace_mkfifo (const char * path, pace_mode_t mode)
-{
- return mkfifo (path, mode);
-}
-
-PACE_INLINE
-int
-pace_stat (const char * path, struct stat * buf)
-{
- return stat (path, buf);
-}
-
-PACE_INLINE
-pace_mode_t
-pace_umask (pace_mode_t cmask)
-{
- return umask (cmask);
-}