diff options
author | Ulrich Drepper <drepper@redhat.com> | 2002-04-14 08:37:17 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2002-04-14 08:37:17 +0000 |
commit | 144484daa4b5f6c61935cc507349f914c7fd1fb4 (patch) | |
tree | 90483f8198c0f44d48e51b1e4d69c8a6f5037429 /sysdeps/unix | |
parent | e60f3fa19841189c9164a764a7e8448f14664272 (diff) | |
download | glibc-144484daa4b5f6c61935cc507349f914c7fd1fb4.tar glibc-144484daa4b5f6c61935cc507349f914c7fd1fb4.tar.gz glibc-144484daa4b5f6c61935cc507349f914c7fd1fb4.tar.bz2 glibc-144484daa4b5f6c61935cc507349f914c7fd1fb4.zip |
Use INTDEF for __fxstat.
Diffstat (limited to 'sysdeps/unix')
-rw-r--r-- | sysdeps/unix/sysv/aix/fxstat.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/aix/fxstat.c b/sysdeps/unix/sysv/aix/fxstat.c index e1f546d8c9..4c1e145dcb 100644 --- a/sysdeps/unix/sysv/aix/fxstat.c +++ b/sysdeps/unix/sysv/aix/fxstat.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 @@ -23,9 +23,12 @@ 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) |