From: Ulrich Drepper Date: Sun, 14 Apr 2002 20:12:24 +0000 (+0000) Subject: Use INTDEF for __open. X-Git-Tag: glibc-2.16-ports-before-merge~1699 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0e36d9d57ee268a304016fed53ca1432c328ba9b;p=thirdparty%2Fglibc.git Use INTDEF for __open. --- diff --git a/sysdeps/unix/sysv/aix/open.c b/sysdeps/unix/sysv/aix/open.c index 4116c4ebdcb..c41c7085644 100644 --- a/sysdeps/unix/sysv/aix/open.c +++ b/sysdeps/unix/sysv/aix/open.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1999, 2000 Free Software Foundation, Inc. +/* Copyright (C) 1999, 2000, 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 @@ -20,6 +20,9 @@ #include #include +#undef __libc_open +#undef __open + int __open (const char *file, int oflag, ...) { @@ -36,3 +39,4 @@ __open (const char *file, int oflag, ...) return open (file, oflag, mode); } strong_alias (__open, __libc_open) +INTDEF(__open)