home *** CD-ROM | disk | FTP | other *** search
/ Source Code 1992 March / Source_Code_CD-ROM_Walnut_Creek_March_1992.iso / usenet / altsrcs / 1 / 1621 / getopt.h < prev    next >
Encoding:
C/C++ Source or Header  |  1990-12-28  |  250 b   |  12 lines

  1. /* Copyright 1990, Daniel J. Bernstein. All rights reserved. */
  2.  
  3. #ifndef PTY_GETOPT_H
  4. #define PTY_GETOPT_H
  5.  
  6. /* The following should be in /usr/include/getopt.h but often aren't. */
  7. extern int getopt();
  8. extern char *optarg;
  9. extern int optind;
  10.  
  11. #endif
  12.