diff options
author | Ulrich Drepper <drepper@redhat.com> | 2009-02-26 01:22:06 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2009-02-26 01:22:06 +0000 |
commit | 2e6d6bacc2f0a30f7dbebc977d52904d4a823c45 (patch) | |
tree | 064e0c5286c1a9b95a4891a6ba4f2a2f9c5eceb5 /posix/getopt_int.h | |
parent | 67108e401faade00a6aaf4e59b5b986345f1123f (diff) | |
download | glibc-2e6d6bacc2f0a30f7dbebc977d52904d4a823c45.tar glibc-2e6d6bacc2f0a30f7dbebc977d52904d4a823c45.tar.gz glibc-2e6d6bacc2f0a30f7dbebc977d52904d4a823c45.tar.bz2 glibc-2e6d6bacc2f0a30f7dbebc977d52904d4a823c45.zip |
* include/features.h: If no feature selection given and we select
by default a POSIX mode, also define __USE_POSIX_IMPLICITLY.
* posix/Versions: Export __posix_getopt.
* posix/getopt.c (_getopt_initialize): Take additional parameter.
Use it to alternatively initialize __posixly_correct.
(_getopt_internal_r): Take addition parameter. Pass on to
_getopt_initialize.
(_getopt_internal): Take addition parameter. Pass on to
_getopt_internal_r.
(getopt): Pass additional zero to _getopt_internal.
(__posix_getopt): New function.
* posix/getopt.h: Add redirection for getopt.
* posix/getopt1.c (getopt_long): Pass additional zero to
_getopt_internal.
(getopt_long_only): Likewise.
(_getopt_long_r): Pass additional zero to _getopt_internal_r.
(_getopt_long_only_r): Likewise.
* posix/getopt_int.h: Adjust declarations of _getopt_internal and
_getopt_internal_r.
Diffstat (limited to 'posix/getopt_int.h')
-rw-r--r-- | posix/getopt_int.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/posix/getopt_int.h b/posix/getopt_int.h index d982c72d9e..d44ee064a8 100644 --- a/posix/getopt_int.h +++ b/posix/getopt_int.h @@ -1,5 +1,5 @@ /* Internal declarations for getopt. - Copyright (C) 1989-1994,1996-1999,2001,2003,2004 + Copyright (C) 1989-1994,1996-1999,2001,2003,2004,2009 Free Software Foundation, Inc. This file is part of the GNU C Library. @@ -24,7 +24,7 @@ extern int _getopt_internal (int ___argc, char *const *___argv, const char *__shortopts, const struct option *__longopts, int *__longind, - int __long_only); + int __long_only, int posixly_correct); /* Reentrant versions which can handle parsing multiple argument @@ -114,7 +114,8 @@ struct _getopt_data extern int _getopt_internal_r (int ___argc, char *const *___argv, const char *__shortopts, const struct option *__longopts, int *__longind, - int __long_only, struct _getopt_data *__data); + int __long_only, struct _getopt_data *__data, + int posixly_correct); extern int _getopt_long_r (int ___argc, char *const *___argv, const char *__shortopts, |