Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Kill tesh2 out of the source tree
[simgrid.git] / tools / tesh2 / w32 / include / getopt.h
diff --git a/tools/tesh2/w32/include/getopt.h b/tools/tesh2/w32/include/getopt.h
deleted file mode 100644 (file)
index 71013cd..0000000
+++ /dev/null
@@ -1,37 +0,0 @@
-#ifndef __GETOPT_H\r
-#define        __GETOPT_H\r
-\r
-#define        no_argument                     0\r
-#define required_argument      1\r
-#define optional_argument      2\r
-\rstruct option \r {
-  \rconst char *name;            /* name of the long option      */
-  \r \r int has_arg;              /*\r
-                                 * has_arg is : no_argument (or 0), if the option doesn't take an argument, \r
-                                 * required_argument (or 1) if the option takes an argument,\r
-                                 * optional_argument (or 2) if the option takes an optional argument.\r
-                                 */
-  \r \r int *flag;                /* specify the mean used to return a result for a long option:\r
-                                 * if flag is NULL, then getopt_long() returns val\r
-                                 * in the other case getopt_long() returns 0, and flag points to the  \r
-                                 * variable specified bay the content of the field val when the option \r
-                                 * is found but it is not update if the option is not found.\r
-                                 */
-  \r \r int val;                  /* val is the value returned by getopt_long() when the pointer flag\r
-                                 * is NULL or the value of the variable referenced by the pointer flag\r
-                                 * when the option is found.\r
-                                 */
-\r};
-\r\rextern int \r optind;
-\r\rextern char *\r optarg;
-\r\rextern int \r opterr;
-\r\rextern int \r optopt;
-\r\r\rint \r getopt(int argc, char *const argv[], const char *optstring);
-\r\rint \r
-getopt_long(int argc, char *const argv[], const char *optstring,
-            const struct option *longopts, int *longindex);
-\r\rint \r getopt_long_only(int argc, char *const argv[],
-                         const char *optstring,
-                         const struct option *longopts, int *longindex);
-\r\r\r
-#endif  /* !__GETOPT_H */\r