|
@@ -18,6 +18,7 @@
|
|
|
<http:
|
|
|
|
|
|
#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
|
|
|
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
|
|
|
|
|
|
|
|
|
static pid_t pid;
|
|
@@ -242,14 +241,7 @@ main (int argc, char *argv[])
|
|
|
setbuf (stdout, NULL);
|
|
|
#endif
|
|
|
|
|
|
-#if 0
|
|
|
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 '?':
|