home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / unix / volume23 / pty / part06 / getopt.h < prev    next >
C/C++ Source or Header  |  1991-01-08  |  250b  |  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.