diff options
Diffstat (limited to 'compat_getsubopt.c')
-rw-r--r-- | compat_getsubopt.c | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/compat_getsubopt.c b/compat_getsubopt.c index 3a4a7d4a..7f675749 100644 --- a/compat_getsubopt.c +++ b/compat_getsubopt.c @@ -6,6 +6,7 @@ int dummy; #else +/* $Id$ */ /* $OpenBSD: getsubopt.c,v 1.4 2005/08/08 08:05:36 espie Exp $ */ /*- @@ -41,18 +42,11 @@ int dummy; #include <stdlib.h> #include <string.h> -/* - * The SVID interface to getsubopt provides no way of figuring out which - * part of the suboptions list wasn't matched. This makes error messages - * tricky... The extern variable suboptarg is a pointer to the token - * which didn't match. - */ -char *suboptarg; - int getsubopt(char **optionp, char * const *tokens, char **valuep) { int cnt; + char *suboptarg; char *p; suboptarg = *valuep = NULL; |