Move sources to src/

This commit is contained in:
Guillem Jover
2006-02-14 05:39:29 +00:00
parent 6be6380e10
commit 5372b73685
12 changed files with 27 additions and 2 deletions

15
src/bsd_getopt.c Normal file
View File

@@ -0,0 +1,15 @@
#include <bsd/getopt.h>
int optreset = 0;
int
bsd_getopt (int argc, char **argv, char *shortopts)
{
if (optreset == 1)
{
optreset = 0;
optind = 0;
}
return getopt (argc, argv, shortopts);
}