From: Ulrich Drepper Date: Mon, 15 Apr 2002 05:27:20 +0000 (+0000) Subject: Use INTDEF for __lxstat. X-Git-Tag: glibc-2.16-ports-before-merge~1698 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2093a68877d5492a0b651ef50060fb5845ca4f41;p=thirdparty%2Fglibc.git Use INTDEF for __lxstat. --- diff --git a/sysdeps/unix/sysv/aix/lxstat.c b/sysdeps/unix/sysv/aix/lxstat.c index bd6f6534a8b..52562bd9340 100644 --- a/sysdeps/unix/sysv/aix/lxstat.c +++ b/sysdeps/unix/sysv/aix/lxstat.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 @@ -21,6 +21,8 @@ #define STX_LINK 0x01 +#undef __lxstat + extern int statx (const char *pathname, struct stat *st, int len, int cmd); int @@ -29,3 +31,5 @@ __lxstat (int ver, const char *pathname, struct stat *st) assert (ver == 0); return statx (pathname, st, sizeof (*st), STX_LINK); } + +INTDEF(__lxstat)