diff options
author | Waldemar Brodkorb <wbx@uclibc-ng.org> | 2014-12-30 18:34:38 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@uclibc-ng.org> | 2014-12-30 18:34:38 +0100 |
commit | 7fa20cef3fc120c9c9fb96c46bd06feb69cef3ca (patch) | |
tree | 346ee92903291a9e2c1516d5193f0ac09009707b /test/test-skeleton.c | |
parent | 5e0ada6a23c683851b8e20ee7ade0cee7a9b4900 (diff) | |
parent | 3d39f1ae2b2bb9f2aa30eee4b34486b03e24c175 (diff) |
Merge branch 'master' of git+ssh://openadk.org/git/uclibc-ng
Diffstat (limited to 'test/test-skeleton.c')
-rw-r--r-- | test/test-skeleton.c | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/test/test-skeleton.c b/test/test-skeleton.c index 69ef99f76..cf7afea03 100644 --- a/test/test-skeleton.c +++ b/test/test-skeleton.c @@ -18,6 +18,7 @@ <http://www.gnu.org/licenses/>. */ #include <errno.h> +#include <getopt.h> #include <malloc.h> #include <search.h> #include <signal.h> @@ -45,7 +46,6 @@ #define OPT_DIRECT 1000 #define OPT_TESTDIR 1001 -#if 0 /* Not used in uClibc */ static struct option options[] = { #ifdef CMDLINE_OPTIONS @@ -55,7 +55,6 @@ static struct option options[] = { "test-dir", required_argument, NULL, OPT_TESTDIR }, { NULL, 0, NULL, 0 } }; -#endif /* PID of the test itself. */ static pid_t pid; @@ -242,14 +241,7 @@ main (int argc, char *argv[]) setbuf (stdout, NULL); #endif -#if 0 /* Not used in uClibc */ while ((opt = getopt_long (argc, argv, "+", options, NULL)) != -1) -#else -# ifndef CMDLINE_OPTIONS -# define CMDLINE_OPTIONS "" -# endif - while ((opt = getopt (argc, argv, "+" CMDLINE_OPTIONS)) >= 0) -#endif switch (opt) { case '?': |