Use INTDEF for __fxstat.
authorUlrich Drepper <drepper@redhat.com>
Sun, 14 Apr 2002 08:37:17 +0000 (08:37 +0000)
committerUlrich Drepper <drepper@redhat.com>
Sun, 14 Apr 2002 08:37:17 +0000 (08:37 +0000)
sysdeps/unix/sysv/aix/fxstat.c

index e1f546d..4c1e145 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
 
 extern int fstatx (int fd, struct stat *st, int len, int cmd);
 
+#undef __fxstat
+
 int
 __fxstat (int ver, int fd, struct stat *st)
 {
   assert (ver == 0);
   return fstatx (fd, st, sizeof (*st), STX_NORMAL);
 }
+INTDEF(__fxstat)