* lib/prototypes.h: Fix getrange prototype.

This commit is contained in:
nekral-guest 2008-07-21 22:45:49 +00:00
parent a674a2e6fd
commit d4eced9b84
2 changed files with 7 additions and 3 deletions

View File

@ -1,3 +1,7 @@
2008-07-22 Nicolas François <nicolas.francois@centraliens.net>
* lib/prototypes.h: Fix getrange prototype.
2008-07-21 Seraphim Mellos <mellos@ceid.upatras.gr>
* README, NEWS, configure.in, lib/pam_defs.h, src/login.c: Add

View File

@ -109,9 +109,9 @@ extern int find_new_uid (bool sys_user, uid_t *uid, uid_t const *preferred_uid);
extern int getlong(const char *numstr, long int *result);
/* getrange */
extern getrange(char *range,
unsigned long *min, bool *has_min,
unsigned long *max, bool *has_max);
extern int getrange(char *range,
unsigned long *min, bool *has_min,
unsigned long *max, bool *has_max);
/* fputsx.c */
extern char *fgetsx (char *, int, FILE *);