mirror of
https://github.com/ksherlock/mpw-tools.git
synced 2025-03-12 19:40:28 +00:00
10 lines
152 B
C
10 lines
152 B
C
#ifndef _UNISTD_H_
|
|
#define _UNISTD_H_
|
|
|
|
int getopt(int, char * const [], const char *);
|
|
extern char *optarg;
|
|
extern int optind, opterr, optopt;
|
|
|
|
#endif
|
|
|