diff options
Diffstat (limited to 'sysdeps/mach/hurd/lxstat.c')
-rw-r--r-- | sysdeps/mach/hurd/lxstat.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sysdeps/mach/hurd/lxstat.c b/sysdeps/mach/hurd/lxstat.c index a928fae7d1..3d6f981345 100644 --- a/sysdeps/mach/hurd/lxstat.c +++ b/sysdeps/mach/hurd/lxstat.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992, 93, 94, 95, 96, 97 Free Software Foundation, Inc. +/* Copyright (C) 1992, 93, 94, 95, 96, 97, 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 @@ #include <fcntl.h> #include <hurd.h> +#undef __lxstat + int __lxstat (int vers, const char *file, struct stat *buf) { @@ -41,4 +43,5 @@ __lxstat (int vers, const char *file, struct stat *buf) return 0; } +INTDEF(__lxstat) weak_alias (__lxstat, _lxstat) |