summaryrefslogtreecommitdiff
path: root/posix
diff options
context:
space:
mode:
authorAndreas Schwab <schwab@redhat.com>2010-07-02 15:18:22 +0200
committerAndreas Schwab <schwab@redhat.com>2010-07-06 11:11:22 +0200
commit080c142f0e0542f7c46fe6b3472925ed31cb188a (patch)
treed90fba698eb0cd0d78ada0c7bf89d304d8489501 /posix
parent5fab284263e8fb80857fe1b654ef252a1d43e0ce (diff)
parent9a98163f266fee3ae00e2636b864e119b9cbf51f (diff)
Merge remote branch 'origin/release/2.12/master' into fedora/2.12/master
Diffstat (limited to 'posix')
-rw-r--r--posix/getopt.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/posix/getopt.h b/posix/getopt.h
index ff0251dec0..6e2fa27180 100644
--- a/posix/getopt.h
+++ b/posix/getopt.h
@@ -1,5 +1,5 @@
/* Declarations for getopt.
- Copyright (C) 1989-1994,1996-1999,2001,2003,2004,2009
+ Copyright (C) 1989-1994,1996-1999,2001,2003,2004,2009,2010
Free Software Foundation, Inc.
This file is part of the GNU C Library.
@@ -158,9 +158,9 @@ extern int getopt (int ___argc, char *const *___argv, const char *__shortopts)
additional functionality can be disable at runtime. This redirection
helps to also do this at runtime. */
# ifdef __REDIRECT
- extern int __REDIRECT (getopt, (int ___argc, char *const *___argv,
- const char *__shortopts),
- __posix_getopt) __THROW;
+ extern int __REDIRECT_NTH (getopt, (int ___argc, char *const *___argv,
+ const char *__shortopts),
+ __posix_getopt);
# else
extern int __posix_getopt (int ___argc, char *const *___argv,
const char *__shortopts) __THROW;