summaryrefslogtreecommitdiff
path: root/sysdeps/generic/open.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2002-04-14 20:15:40 +0000
committerUlrich Drepper <drepper@redhat.com>2002-04-14 20:15:40 +0000
commit08f600749ecfeedfcd70c4dd8d0a9fa6c4380a1c (patch)
treeb6f1e16464e572ea28deb01a7db8d6850d64b8b3 /sysdeps/generic/open.c
parentf83af095b6fc49de3914f4426202171341783277 (diff)
Update.
* include/sys/socket.h: Declare __libc_sa_len_internal and define SA_LEN macro to use it if not NOT_IN_libc. * sysdeps/unix/sysv/linux/sa_len.c: Use INTDEF for __libc_sa_len. * include/fcntl.h: Declare __open_internal and define __open and __libc_open macros if not NOT_IN_libc. * sysdeps/generic/open.c: Use INTDEF for __open. * sysdeps/mach/hurd/open.c: Likewise. * sysdeps/unix/sysv/aix/open.c: Likewise. * sysdeps/unix/syscalls.list: Add __open_internal alias. * sysdeps/generic/check_fds.c: Make sure newly opened file descriptor has correct number. * include/fcntl.h: Define __libc_fcntl macro if not NOT_IN_libc. * sysdeps/mach/hurd/fcntl.c: Undefine __libc_fcntl as well. * sysdeps/unix/sysv/aix/fcntl.c: Likewise. * sysdeps/unix/sysv/linux/i386/fcntl.c: Likewise. * include/wctype.h: Declare __iswalpha_l_internal, __iswdigit_l_internal, __iswspace_l_internal, __iswxdigit_l_internal, and __iswctype_internal. Define __iswalpha_l, __iswctype, __iswdigit_l, __iswspace_l, and __iswxdigit_l macros if not NOT_IN_libc. * wctype/iswctype.c: Use INTDEF for __iswctype. * wctype/wcfuncs_l.c: Use INTDEF for all __iswXXX_l.
Diffstat (limited to 'sysdeps/generic/open.c')
-rw-r--r--sysdeps/generic/open.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/sysdeps/generic/open.c b/sysdeps/generic/open.c
index f4778b905a..c9ea902447 100644
--- a/sysdeps/generic/open.c
+++ b/sysdeps/generic/open.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991, 1995, 1996, 1997 Free Software Foundation, Inc.
+/* Copyright (C) 1991, 1995, 1996, 1997, 2002 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@@ -21,6 +21,8 @@
#include <stdarg.h>
#include <stddef.h>
+#undef __open
+
/* Open FILE with access OFLAG. If OFLAG includes O_CREAT,
a third argument is the file protection. */
int
@@ -49,5 +51,6 @@ __open (file, oflag)
}
stub_warning (open)
+INTDEF(__open)
weak_alias (__open, open)
#include <stub-tag.h>