Use INTDEF for __lxstat64.
authorUlrich Drepper <drepper@redhat.com>
Mon, 15 Apr 2002 05:28:30 +0000 (05:28 +0000)
committerUlrich Drepper <drepper@redhat.com>
Mon, 15 Apr 2002 05:28:30 +0000 (05:28 +0000)
sysdeps/unix/sysv/aix/lxstat64.c

index d6376bd..d68b458 100644 (file)
@@ -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)