diff options
author | Roland McGrath <roland@gnu.org> | 2003-01-13 03:42:08 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2003-01-13 03:42:08 +0000 |
commit | 2674e3c6fc3d2a1279b0e31877f90a22a523504c (patch) | |
tree | 66e00e1f6cab54324b6c28c7a4f8796343723d3f /include | |
parent | 1376cd8c7ba7bd48a2b3c224b2c1c4e76db15d2d (diff) | |
download | glibc-2674e3c6fc3d2a1279b0e31877f90a22a523504c.tar glibc-2674e3c6fc3d2a1279b0e31877f90a22a523504c.tar.gz glibc-2674e3c6fc3d2a1279b0e31877f90a22a523504c.tar.bz2 glibc-2674e3c6fc3d2a1279b0e31877f90a22a523504c.zip |
2003-01-12 Roland McGrath <roland@redhat.com>
* include/fcntl.h: Declare __libc_creat.
Diffstat (limited to 'include')
-rw-r--r-- | include/fcntl.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/fcntl.h b/include/fcntl.h index 897fd609bb..b2c3812350 100644 --- a/include/fcntl.h +++ b/include/fcntl.h @@ -7,6 +7,7 @@ libc_hidden_proto (__open64) extern int __libc_open64 (const char *file, int oflag, ...); extern int __libc_open (const char *file, int oflag, ...); libc_hidden_proto (__libc_open) +extern int __libc_creat (const char *file, mode_t mode); extern int __libc_fcntl (int fd, int cmd, ...); libc_hidden_proto (__libc_fcntl) extern int __open (__const char *__file, int __oflag, ...); |