diff options
Diffstat (limited to 'sysdeps/generic/lxstat.c')
-rw-r--r-- | sysdeps/generic/lxstat.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sysdeps/generic/lxstat.c b/sysdeps/generic/lxstat.c index 61ead6ff0f..6d1da8061b 100644 --- a/sysdeps/generic/lxstat.c +++ b/sysdeps/generic/lxstat.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 1992, 1995, 1996, 1997 Free Software Foundation, Inc. +/* Copyright (C) 1991,1992,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 @@ -18,10 +18,13 @@ #include <sys/stat.h> +#undef __lxstat + int __lxstat (int version, const char *file, struct stat *buf) { return __xstat (version, file, buf); } +INTDEF(__lxstat) weak_alias (__lxstat, _lxstat) |