diff options
author | Damien Miller <djm@mindrot.org> | 2001-09-18 15:05:20 +1000 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2001-09-18 15:05:20 +1000 |
commit | ff5f47e230b2c8278791c0fb8b2bcb0d08fcee1b (patch) | |
tree | 9d2673f5339f61631931224d55630952cee25edc /openbsd-compat | |
parent | ffbe69890dd16bb0dce24e401163cec731034e39 (diff) | |
download | openssh-git-ff5f47e230b2c8278791c0fb8b2bcb0d08fcee1b.tar.gz |
- (djm) Avoid warning on BSDgetopt
Diffstat (limited to 'openbsd-compat')
-rw-r--r-- | openbsd-compat/getopt.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/openbsd-compat/getopt.h b/openbsd-compat/getopt.h index 08a4eb3e..9abdae8e 100644 --- a/openbsd-compat/getopt.h +++ b/openbsd-compat/getopt.h @@ -1,14 +1,14 @@ -/* $Id: getopt.h,v 1.3 2001/09/17 21:34:34 tim Exp $ */ +/* $Id: getopt.h,v 1.4 2001/09/18 05:05:21 djm Exp $ */ -#ifndef _GETOPT_H -#define _GETOPT_H +#ifndef _BSDGETOPT_H +#define _BSDGETOPT_H #include "config.h" -#ifndef HAVE_GETOPT_H +#if !defined(HAVE_GETOPT) || !defined(HAVE_GETOPT_OPTRESET) int BSDgetopt(int argc, char * const *argv, const char *opts); #endif -#endif /* _GETOPT_H */ +#endif /* _BSDGETOPT_H */ |