home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / Tools / linuxdoc-sgml-1.1 / sgmls-1.1 / getopt.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-05-03  |  279 b   |  12 lines

  1. /* Declare getopt() and associated variables. */
  2.  
  3. /* Don't use prototypes in case some system header file has a
  4. conflicting definition.  Systems differ on how they declare the second
  5. parameter. */
  6.  
  7. extern int getopt();
  8.  
  9. extern char *optarg;
  10. extern int optind;
  11. extern int opterr;
  12.