diff options
Diffstat (limited to 'PACE/pace/sys/stat.inl')
-rw-r--r-- | PACE/pace/sys/stat.inl | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/PACE/pace/sys/stat.inl b/PACE/pace/sys/stat.inl new file mode 100644 index 00000000000..e44ceedda61 --- /dev/null +++ b/PACE/pace/sys/stat.inl @@ -0,0 +1,64 @@ +/* $Id$ -*- C -*- + + * ============================================================================= + * + * = LIBRARY + * pace + * + * = FILENAME + * stat.inl + * + * = AUTHOR + * Luther Baker + * + * ============================================================================= */ + + +PACE_INLINE +int +pace_chmod (const char * path, mode_t mode) +{ + return chmod (path, mode); +} + +PACE_INLINE +int +pace_fchmod (int fildes, 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, mode_t mode) +{ + return mkdir (path, mode); +} + +PACE_INLINE +int +pace_mkfifo (const char * path, mode_t mode) +{ + return mkfifo (path, mode); +} + +PACE_INLINE +int +pace_stat (const char * path, struct stat * buf) +{ + return stat (path, buf); +} + +PACE_INLINE +mode_t +pace_umask (mode_t cmask) +{ + return umask (cmask); +} |