diff options
author | Tim Rice <tim@multitalents.net> | 2001-09-17 14:34:33 -0700 |
---|---|---|
committer | Tim Rice <tim@multitalents.net> | 2001-09-17 14:34:33 -0700 |
commit | a4f7ae1a35b5da61705bea75bcc50bc7a27726dd (patch) | |
tree | 366ca694b41098a5808d5e584244241dacba921a /includes.h | |
parent | c3bd7eccac2c9d087dd23ab4929d423414d3f18e (diff) | |
download | openssh-git-a4f7ae1a35b5da61705bea75bcc50bc7a27726dd.tar.gz |
- (tim) [includes.h openbsd-compat/getopt.c openbsd-compat/getopt.h]
rename getopt() to BSDgetopt() to keep form conflicting with
system getopt().
[Makefile.in configure.in] disable filepriv until I can add
missing procpriv calls.
Diffstat (limited to 'includes.h')
-rw-r--r-- | includes.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -51,6 +51,9 @@ static /**/const char *const rcsid[] = { (char *)rcsid, "\100(#)" msg } #ifdef HAVE_GETOPT_H # include <getopt.h> #endif +#ifndef HAVE_GETOPT_OPTRESET +#define getopt(ac, av, o) BSDgetopt(ac, av, o) +#endif #ifdef HAVE_BSTRING_H # include <bstring.h> #endif |