diff options
Diffstat (limited to 'sysdeps/unix/sysv/aix/lxstat.c')
-rw-r--r-- | sysdeps/unix/sysv/aix/lxstat.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/sysdeps/unix/sysv/aix/lxstat.c b/sysdeps/unix/sysv/aix/lxstat.c index 52562bd934..879e80cbe8 100644 --- a/sysdeps/unix/sysv/aix/lxstat.c +++ b/sysdeps/unix/sysv/aix/lxstat.c @@ -21,8 +21,6 @@ #define STX_LINK 0x01 -#undef __lxstat - extern int statx (const char *pathname, struct stat *st, int len, int cmd); int @@ -31,5 +29,4 @@ __lxstat (int ver, const char *pathname, struct stat *st) assert (ver == 0); return statx (pathname, st, sizeof (*st), STX_LINK); } - -INTDEF(__lxstat) +hidden_def (__lxstat) |