/* getopt.h

Standard Unix getopt */

extern char *optarg;
extern int optind, opterr;
int getopt(int argc, char **argv, char *optstring);

/* 
*/