getopt.h

1999-10-20 Thread Jeroen Ruigrok/Asmodai
Well I searched the mailinglists and didn't really got further than discovering that unistd.h goes a little way to provide functionality which getopt.h from glibc provides. And seeing that a question of Bill early 1999 never got answered correctly. I cc:'d Bruce on this since I value his

Re: getopt.h

1999-10-20 Thread Bruce Evans
*, const struct option *, int *); extern int _getopt_internal (int, char *const [], const char *, const struct option *, int *, int ); This should enable us to compile programs which require getopt.h by simply including unistd.h. These are gnu extensions

Re: getopt.h

1999-10-20 Thread Jamie Howard
On Wed, 20 Oct 1999, Jeroen Ruigrok/Asmodai wrote: Well I searched the mailinglists and didn't really got further than discovering that unistd.h goes a little way to provide functionality which getopt.h from glibc provides. And seeing that a question of Bill early 1999 never got answered