home *** CD-ROM | disk | FTP | other *** search
/ Chip 1995 March / CHIP3.mdf / slackwar / a / util / util-lin.2 / util-lin / util-linux-2.2 / time / optind.c < prev    next >
Encoding:
C/C++ Source or Header  |  1995-02-22  |  302 b   |  11 lines

  1. #ifndef lint
  2. #ifndef NOID
  3. static char    elsieid[] = "@(#)optind.c    7.3";
  4. #endif /* !defined NOID */
  5. #endif /* !defined lint */
  6.  
  7. int    opterr = 1,        /* if error message should be printed */
  8.     optind = 1;        /* index into parent argv vector */
  9. char    *optarg;        /* argument associated with option */
  10. int     optopt;
  11.