Home | History | Annotate | Download | only in include
      1 /* $Id: getopt.h,v 1.4 2001/09/18 05:05:21 djm Exp $ */
      2 
      3 #ifndef	_GETOPT_H
      4 #define	_GETOPT_H
      5 
      6 #pragma ident	"%Z%%M%	%I%	%E% SMI"
      7 
      8 #ifdef __cplusplus
      9 extern "C" {
     10 #endif
     11 
     12 #include "config.h"
     13 
     14 #if !defined(HAVE_GETOPT) || !defined(HAVE_GETOPT_OPTRESET)
     15 
     16 int BSDgetopt(int argc, char * const *argv, const char *opts);
     17 
     18 #endif
     19 
     20 #ifdef __cplusplus
     21 }
     22 #endif
     23 
     24 #endif /* _GETOPT_H */
     25