From 10332f32276d5ab2e4ae3942b3949c2171b9041c Mon Sep 17 00:00:00 2001 From: Mike Smith Date: Mon, 11 Jan 1999 11:32:35 +0000 Subject: [PATCH] optreset is a POSIX extension, make it visible in POSIX_SOURCE scope. Submitted by: Andrzej Bialecki --- include/unistd.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/unistd.h b/include/unistd.h index eec9a95565e0..13afc190e8b5 100644 --- a/include/unistd.h +++ b/include/unistd.h @@ -199,10 +199,10 @@ int usleep __P((unsigned int)); void *valloc __P((size_t)); /* obsoleted by malloc() */ pid_t vfork __P((void)); -extern optreset; /* getopt(3) external variable */ extern char *suboptarg; /* getsubopt(3) external variable */ int getsubopt __P((char **, char * const *, char **)); #endif /* !_POSIX_SOURCE */ +extern int optreset; /* getopt(3) external variable */ __END_DECLS #endif /* !_UNISTD_H_ */