762e5d4831
1999-12-19 Andreas Jaeger <aj@suse.de> * sysdeps/generic/libc-start.c: Remove declaration of __libc_open. Move declaration of __libc_fcntl to ... * include/fcntl.h: ...here. * include/unistd.h: Move __libc_open and __libc_open64 to ... * include/fcntl.h: ...here. * malloc/malloc.h (__attribute_malloc__): Only define if hasn't happened yet. * malloc/Versions: __libc_freeres was exported with glibc 2.1.3, rename label.
11 lines
321 B
C
11 lines
321 B
C
#ifndef _FCNTL_H
|
|
#include <io/fcntl.h>
|
|
|
|
/* Now define the internal interfaces. */
|
|
extern int __open64 (__const char *__file, int __oflag, ...);
|
|
extern int __libc_open64 (const char *file, int oflag, ...);
|
|
extern int __libc_open (const char *file, int oflag, ...);
|
|
extern int __libc_fcntl (int fd, int cmd, ...);
|
|
|
|
#endif
|