svn commit: trunk/uClibc/libc/unistd

psm at uclibc.org psm at uclibc.org
Fri Feb 17 09:27:32 UTC 2006


Author: psm
Date: 2006-02-17 01:27:30 -0800 (Fri, 17 Feb 2006)
New Revision: 14089

Log:
Remove hidden_data_def for opt*

Modified:
   trunk/uClibc/libc/unistd/getopt-susv3.c
   trunk/uClibc/libc/unistd/getopt.c


Changeset:
Modified: trunk/uClibc/libc/unistd/getopt-susv3.c
===================================================================
--- trunk/uClibc/libc/unistd/getopt-susv3.c	2006-02-17 09:26:45 UTC (rev 14088)
+++ trunk/uClibc/libc/unistd/getopt-susv3.c	2006-02-17 09:27:30 UTC (rev 14089)
@@ -54,18 +54,10 @@
 static const char illegal[] = "%s: illegal option -- %c\n";
 #endif
 
-libc_hidden_proto(opterr)
 int opterr = 1;
-libc_hidden_data_def(opterr)
-libc_hidden_proto(optind)
 int optind = 1;
-libc_hidden_data_def(optind)
-libc_hidden_proto(optopt)
 int optopt = 0;
-libc_hidden_data_def(optopt)
-libc_hidden_proto(optarg)
 char *optarg = NULL;
-libc_hidden_data_def(optarg)
 
 int getopt(int argc, char * const argv[], const char *optstring)
 {

Modified: trunk/uClibc/libc/unistd/getopt.c
===================================================================
--- trunk/uClibc/libc/unistd/getopt.c	2006-02-17 09:26:45 UTC (rev 14088)
+++ trunk/uClibc/libc/unistd/getopt.c	2006-02-17 09:27:30 UTC (rev 14089)
@@ -79,9 +79,7 @@
    Also, when `ordering' is RETURN_IN_ORDER,
    each non-option ARGV-element is returned here.  */
 
-libc_hidden_proto(optarg)
 char *optarg = NULL;
-libc_hidden_data_def(optarg)
 
 /* Index in ARGV of the next element to be scanned.
    This is used for communication to and from the caller
@@ -96,24 +94,18 @@
    how much of ARGV has been scanned so far.  */
 
 /* 1003.2 says this must be 1 before any call.  */
-libc_hidden_proto(optind)
 int optind = 1;
-libc_hidden_data_def(optind)
 
 /* Callers store zero here to inhibit the error message
    for unrecognized options.  */
 
-libc_hidden_proto(opterr)
 int opterr = 1;
-libc_hidden_data_def(opterr)
 
 /* Set to an option character which was unrecognized.
    This must be initialized on some systems to avoid linking in the
    system's own getopt implementation.  */
 
-libc_hidden_proto(optopt)
 int optopt = '?';
-libc_hidden_data_def(optopt)
 
 /* The next char to be scanned in the option-element
    in which the last option character we returned was found.




More information about the uClibc-cvs mailing list