DEADSOFTWARE

subsystem C99 renamed to PosixC
[cpc.git] / src / cpfront / linux / 486 / Posix / Mod / Csys_stat.cp
similarity index 60%
rename from src/cpfront/linux/486/C99/Mod/sys_stat.cp
rename to src/cpfront/linux/486/Posix/Mod/Csys_stat.cp
index 9b7d73a50352c2b548654b85a354ae0606d1ce54..1d7c38f8626931a56f9e3eb69be7242cd577679c 100644 (file)
@@ -1,39 +1,39 @@
-MODULE C99sys_stat ['sys/stat.h'];
+MODULE PosixCsys_stat ['sys/stat.h'];
 
   (* generated by genposix.sh, do not modify *)
 
-  IMPORT SYSTEM, C99types, C99time, C99sys_types;
+  IMPORT SYSTEM, PosixCtypes, PosixCtime, PosixCsys_types;
 
   TYPE
-    char* = C99types.char;
-    signed_char* = C99types.signed_char;
-    unsigned_char* = C99types.unsigned_char;
-    short* = C99types.short;
-    short_int* = C99types.short_int;
-    signed_short* = C99types.signed_short;
-    signed_short_int* = C99types.signed_short_int;
-    unsigned_short* = C99types.unsigned_short;
-    unsigned_short_int* = C99types.unsigned_short_int;
-    int* = C99types.int;
-    signed* = C99types.signed;
-    signed_int* = C99types.signed_int;
-    unsigned* = C99types.unsigned;
-    unsigned_int* = C99types.unsigned_int;
-    long* = C99types.long;
-    long_int* = C99types.long_int;
-    signed_long* = C99types.signed_long;
-    signed_long_int* = C99types.signed_long_int;
-    unsigned_long* = C99types.unsigned_long;
-    unsigned_long_int* = C99types.unsigned_long_int;
-    long_long* = C99types.long_long;
-    long_long_int* = C99types.long_long_int;
-    signed_long_long* = C99types.signed_long_long;
-    signed_long_long_int* = C99types.signed_long_long_int;
-    unsigned_long_long* = C99types.unsigned_long_long;
-    unsigned_long_long_int* = C99types.unsigned_long_long_int;
-    float* = C99types.float;
-    double* = C99types.double;
-    long_double* = C99types.long_double;
+    char* = PosixCtypes.char;
+    signed_char* = PosixCtypes.signed_char;
+    unsigned_char* = PosixCtypes.unsigned_char;
+    short* = PosixCtypes.short;
+    short_int* = PosixCtypes.short_int;
+    signed_short* = PosixCtypes.signed_short;
+    signed_short_int* = PosixCtypes.signed_short_int;
+    unsigned_short* = PosixCtypes.unsigned_short;
+    unsigned_short_int* = PosixCtypes.unsigned_short_int;
+    int* = PosixCtypes.int;
+    signed* = PosixCtypes.signed;
+    signed_int* = PosixCtypes.signed_int;
+    unsigned* = PosixCtypes.unsigned;
+    unsigned_int* = PosixCtypes.unsigned_int;
+    long* = PosixCtypes.long;
+    long_int* = PosixCtypes.long_int;
+    signed_long* = PosixCtypes.signed_long;
+    signed_long_int* = PosixCtypes.signed_long_int;
+    unsigned_long* = PosixCtypes.unsigned_long;
+    unsigned_long_int* = PosixCtypes.unsigned_long_int;
+    long_long* = PosixCtypes.long_long;
+    long_long_int* = PosixCtypes.long_long_int;
+    signed_long_long* = PosixCtypes.signed_long_long;
+    signed_long_long_int* = PosixCtypes.signed_long_long_int;
+    unsigned_long_long* = PosixCtypes.unsigned_long_long;
+    unsigned_long_long_int* = PosixCtypes.unsigned_long_long_int;
+    float* = PosixCtypes.float;
+    double* = PosixCtypes.double;
+    long_double* = PosixCtypes.long_double;
 
   CONST
     S_IFMT* = 61440;
@@ -67,19 +67,19 @@ MODULE C99sys_stat ['sys/stat.h'];
     UTIME_OMIT* = 1073741822;
 
   TYPE
-    blkcnt_t* = C99sys_types.blkcnt_t;
-    blksize_t* = C99sys_types.blksize_t;
-    dev_t* = C99sys_types.dev_t;
-    ino_t* = C99sys_types.ino_t;
-    mode_t* = C99sys_types.mode_t;
-    nlink_t* = C99sys_types.nlink_t;
-    uid_t* = C99sys_types.uid_t;
-    gid_t* = C99sys_types.gid_t;
-    off_t* = C99sys_types.off_t;
-    time_t* = C99sys_types.time_t;
+    blkcnt_t* = PosixCsys_types.blkcnt_t;
+    blksize_t* = PosixCsys_types.blksize_t;
+    dev_t* = PosixCsys_types.dev_t;
+    ino_t* = PosixCsys_types.ino_t;
+    mode_t* = PosixCsys_types.mode_t;
+    nlink_t* = PosixCsys_types.nlink_t;
+    uid_t* = PosixCsys_types.uid_t;
+    gid_t* = PosixCsys_types.gid_t;
+    off_t* = PosixCsys_types.off_t;
+    time_t* = PosixCsys_types.time_t;
 
   TYPE
-    struct_timespec* = C99time.struct_timespec;
+    struct_timespec* = PosixCtime.struct_timespec;
 
   TYPE
     Pstruct_stat* = POINTER TO struct_stat;
@@ -116,4 +116,4 @@ MODULE C99sys_stat ['sys/stat.h'];
   PROCEDURE [ccall] umask* (mode: mode_t): mode_t;
   PROCEDURE [ccall] utimensat* (dirfd: int; IN pathname: ARRAY [untagged] OF SHORTCHAR; IN times: ARRAY [untagged] 2 OF struct_timespec; flags: int): int;
 
-END C99sys_stat.
+END PosixCsys_stat.