- (stevesk) change getopt() declaration

This commit is contained in:
Kevin Steves 2001-07-14 16:05:55 +00:00
parent 4f8e66929b
commit 60193f70f7
2 changed files with 6 additions and 3 deletions

View File

@ -1,3 +1,6 @@
20010714
- (stevesk) change getopt() declaration
20010713
- (djm) Enable /etc/nologin check on PAM systems, as some lack the
pam_nologin module. Report from William Yodlowsky
@ -6025,4 +6028,4 @@
- Wrote replacements for strlcpy and mkdtemp
- Released 1.0pre1
$Id: ChangeLog,v 1.1399 2001/07/14 03:22:53 djm Exp $
$Id: ChangeLog,v 1.1400 2001/07/14 16:05:55 stevesk Exp $

View File

@ -1,4 +1,4 @@
/* $Id: getopt.h,v 1.1 2001/07/14 03:22:54 djm Exp $ */
/* $Id: getopt.h,v 1.2 2001/07/14 16:05:55 stevesk Exp $ */
#ifndef _GETOPT_H
#define _GETOPT_H
@ -7,7 +7,7 @@
#ifndef HAVE_GETOPT_H
int getopt(int argc, char **argv, char *opts);
int getopt(int argc, char * const *argv, const char *opts);
#endif