diff options
Diffstat (limited to 'sysdeps/generic/fxstat64.c')
-rw-r--r-- | sysdeps/generic/fxstat64.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sysdeps/generic/fxstat64.c b/sysdeps/generic/fxstat64.c index cd47a03baa..bcc7265e18 100644 --- a/sysdeps/generic/fxstat64.c +++ b/sysdeps/generic/fxstat64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 1995, 1996, 1997 Free Software Foundation, Inc. +/* Copyright (C) 1991, 1995, 1996, 1997, 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 @@ -20,6 +20,8 @@ #include <stddef.h> #include <sys/stat.h> +#undef __fxstat64 + /* Get information about the file descriptor FD in BUF. */ int __fxstat64 (int vers, int fd, struct stat64 *buf) @@ -46,3 +48,5 @@ __fxstat64 (int vers, int fd, struct stat64 *buf) } stub_warning (fstat64) #include <stub-tag.h> + +INTDEF(__fxstat64) |