diff options
author | Ulrich Drepper <drepper@redhat.com> | 2002-04-15 05:28:30 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2002-04-15 05:28:30 +0000 |
commit | 548fe33d15ff56d40e72f8183176b14222199d8d (patch) | |
tree | e6d4dcba5ed9de538d0c7dbf176d1e3ed8bcb493 /sysdeps/unix/sysv | |
parent | 2093a68877d5492a0b651ef50060fb5845ca4f41 (diff) | |
download | glibc-548fe33d15ff56d40e72f8183176b14222199d8d.tar glibc-548fe33d15ff56d40e72f8183176b14222199d8d.tar.gz glibc-548fe33d15ff56d40e72f8183176b14222199d8d.tar.bz2 glibc-548fe33d15ff56d40e72f8183176b14222199d8d.zip |
Use INTDEF for __lxstat64.
Diffstat (limited to 'sysdeps/unix/sysv')
-rw-r--r-- | sysdeps/unix/sysv/aix/lxstat64.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/aix/lxstat64.c b/sysdeps/unix/sysv/aix/lxstat64.c index d6376bd260..d68b4583d2 100644 --- a/sysdeps/unix/sysv/aix/lxstat64.c +++ b/sysdeps/unix/sysv/aix/lxstat64.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 @@ -22,6 +22,8 @@ #define STX_LINK 0x01 #define STX_64 0x08 +#undef __lxstat64 + extern int statx (const char *pathname, struct stat64 *st, int len, int cmd); int @@ -30,3 +32,5 @@ __lxstat64 (int ver, const char *pathname, struct stat64 *st) assert (ver == 0); return statx (pathname, st, sizeof (*st), STX_LINK | STX_64); } + +INTDEF(__lxstat64) |