diff options
author | Ulrich Drepper <drepper@redhat.com> | 2002-04-15 05:27:20 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2002-04-15 05:27:20 +0000 |
commit | 2093a68877d5492a0b651ef50060fb5845ca4f41 (patch) | |
tree | f4f57cc911367ed7b774322ebbb250850f2eee9a /sysdeps/unix/sysv | |
parent | 0e36d9d57ee268a304016fed53ca1432c328ba9b (diff) | |
download | glibc-2093a68877d5492a0b651ef50060fb5845ca4f41.tar glibc-2093a68877d5492a0b651ef50060fb5845ca4f41.tar.gz glibc-2093a68877d5492a0b651ef50060fb5845ca4f41.tar.bz2 glibc-2093a68877d5492a0b651ef50060fb5845ca4f41.zip |
Use INTDEF for __lxstat.
Diffstat (limited to 'sysdeps/unix/sysv')
-rw-r--r-- | sysdeps/unix/sysv/aix/lxstat.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/aix/lxstat.c b/sysdeps/unix/sysv/aix/lxstat.c index bd6f6534a8..52562bd934 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) |