diff options
author | Andreas Jaeger <aj@suse.de> | 2012-03-14 16:50:33 +0100 |
---|---|---|
committer | Andreas Jaeger <aj@suse.de> | 2012-03-14 17:09:07 +0100 |
commit | 1e2405c8fa877d7cb3c06626c94356faaa7bd1e0 (patch) | |
tree | efdf1794308e9efe0627fbc89a99fa6d0a4750dd /dirent | |
parent | 356a10ee3ee36bec0af7e8a1c61e353e0af45904 (diff) | |
download | glibc-1e2405c8fa877d7cb3c06626c94356faaa7bd1e0.tar.gz glibc-1e2405c8fa877d7cb3c06626c94356faaa7bd1e0.tar.xz glibc-1e2405c8fa877d7cb3c06626c94356faaa7bd1e0.zip |
Remove files so that i386 uses the iee754/dbl-64 sin and cos implementation.
Diffstat (limited to 'dirent')
-rw-r--r-- | dirent/dirfd.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/dirent/dirfd.c b/dirent/dirfd.c index 569484c5af..026421f33b 100644 --- a/dirent/dirfd.c +++ b/dirent/dirfd.c @@ -1,5 +1,5 @@ /* Return the file descriptor used by a DIR stream. Stub version. - Copyright (C) 1995, 1996, 2012 Free Software Foundation, Inc. + Copyright (C) 1995, 1996 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 @@ -21,13 +21,12 @@ #include <errno.h> int -__dirfd (dirp) +dirfd (dirp) DIR *dirp; { __set_errno (ENOSYS); return -1; } -weak_alias(__dirfd, dirfd) stub_warning (dirfd) #include <stub-tag.h> |