home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Usenet 1994 October
/
usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso
/
unix
/
volume23
/
pty
/
part06
/
getopt.h
< prev
next >
Wrap
C/C++ Source or Header
|
1991-01-08
|
250b
|
12 lines
/* Copyright 1990, Daniel J. Bernstein. All rights reserved. */
#ifndef PTY_GETOPT_H
#define PTY_GETOPT_H
/* The following should be in /usr/include/getopt.h but often aren't. */
extern int getopt();
extern char *optarg;
extern int optind;
#endif