* sysdeps/m68k/bits/byteswap.h (__bswap_32): Add cast to avoid
[glibc/pb-stable.git] / conform / data / fcntl.h-data
blob0fbe7d57feb9ab0b7eb9c58ab1d547632d8dbf8d
1 #if !defined ISO && !defined POSIX
2 constant F_DUPFD
3 constant F_GETFD
4 constant F_SETFD
5 constant F_GETFL
6 constant F_SETFL
7 constant F_GETLK
8 constant F_SETLK
9 constant F_SETLKW
10 constant F_GETOWN
11 constant F_SETOWN
13 constant FD_CLOEXEC
15 constant F_RDLCK
16 constant F_UNLCK
17 constant F_WRLCK
19 constant SEEK_SET
20 constant SEEK_CUR
21 constant SEED_END
23 constant O_CREAT
24 constant O_EXCL
25 constant O_NOCTTY
26 constant O_TRUNC
28 constant O_APPEND
29 constant O_DSYNC
30 constant O_NONBLOCK
31 constant O_RSYNC
32 constant O_SYNC
34 constant O_ACCMODE
36 constant O_RDONLY
37 constant O_RDWR
38 constant O_WRONLY
40 constant S_IFMT
41 constant S_IFBLK
42 constant S_IFCHR
43 constant S_IFIFO
44 constant S_IFREG
45 constant S_IFDIR
46 constant S_IFLNK
47 constant S_IFSOCK
49 constant S_IRWXU
50 constant S_IRUSR
51 constant S_IWUSR
52 constant S_IXUSR
53 constant S_IRWXG
54 constant S_IRGRP
55 constant S_IWGRP
56 constant S_IXGRP
57 constant S_IRWXO
58 constant S_IROTH
59 constant S_IWOTH
60 constant S_IXOTH
61 constant S_ISUID
62 constant S_ISGID
63 constant S_ISVTX
65 constant POSIX_FADV_NORMAL
66 constant POSIX_FADV_SEQUENTIAL
67 constant POSIX_FADV_RANDOM
68 constant POSIX_FADV_WILLNEED
69 constant POSIX_FADV_DONTNEED
70 constant POSIX_FADV_NOREUSE
72 type {struct flock}
74 element {struct flock} short l_type
75 element {struct flock} short l_whence
76 element {struct flock} off_t l_start
77 element {struct flock} off_t l_len
78 element {struct flock} pid_t l_pid
80 type mode_t
81 type off_t
82 type pid_t
84 function int creat (const char*, mode_t)
85 function int fcntl (int, int, ...)
86 function int open (const char*, int, ...)
87 function int posix_fadvise (int, off_t, size_t, int)
88 function int posix_fallocate (int, off_t, size_t)
89 function int posix_madvise (void*, size_t, int)
91 allow-header sys/stat.h
92 allow-header unistd.h
94 allow l_*
95 allow F_*
96 allow O_*
97 allow S_*
98 allow *_t
99 #endif