X-Git-Url: https://deadsoftware.ru/gitweb?p=cpc.git;a=blobdiff_plain;f=src%2Fcpfront%2Flinux%2F486%2FPosix%2FMod%2FCfcntl.cp;fp=src%2Fcpfront%2Flinux%2F486%2FC99%2FMod%2Ffcntl.cp;h=25c73a5623fc8db65a20e7a87fe84ae9fce9ae68;hp=06e53682203f352cda0650169723c68c4a66068d;hb=92aff0fa77569efb2d8cd1b3703370cb61137173;hpb=1f85f5e1e40eefd27f424226f9040abccf195875 diff --git a/src/cpfront/linux/486/C99/Mod/fcntl.cp b/src/cpfront/linux/486/Posix/Mod/Cfcntl.cp similarity index 56% rename from src/cpfront/linux/486/C99/Mod/fcntl.cp rename to src/cpfront/linux/486/Posix/Mod/Cfcntl.cp index 06e5368..25c73a5 100644 --- a/src/cpfront/linux/486/C99/Mod/fcntl.cp +++ b/src/cpfront/linux/486/Posix/Mod/Cfcntl.cp @@ -1,39 +1,39 @@ -MODULE C99fcntl ['fcntl.h']; +MODULE PosixCfcntl ['fcntl.h']; (* generated by genposix.sh, do not modify *) - IMPORT SYSTEM, C99types, C99sys_types; + IMPORT SYSTEM, PosixCtypes, 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 F_DUPFD* = 0; @@ -105,9 +105,9 @@ MODULE C99fcntl ['fcntl.h']; END; TYPE - mode_t* = C99sys_types.mode_t; - off_t* = C99sys_types.off_t; - pid_t* = C99sys_types.pid_t; + mode_t* = PosixCsys_types.mode_t; + off_t* = PosixCsys_types.off_t; + pid_t* = PosixCsys_types.pid_t; PROCEDURE [ccall] creat* (IN pathname: ARRAY [untagged] OF SHORTCHAR; mode: mode_t): int; PROCEDURE [ccall] fcntl* (fildes, cmd, arg: int): int; @@ -116,4 +116,4 @@ MODULE C99fcntl ['fcntl.h']; PROCEDURE [ccall] posix_fadvise* (fd: int; offset, len: off_t; advice: int): int; PROCEDURE [ccall] posix_fallocate* (fd: int; offset, len: off_t): int; -END C99fcntl. +END PosixCfcntl.