Define is_listed() as static and add its prototype.

This commit is contained in:
nekral-guest 2008-01-05 13:29:24 +00:00
parent 96bca84ca4
commit 99dc2b1abf
2 changed files with 5 additions and 1 deletions

View File

@ -8,6 +8,8 @@
libmisc/pwd_init.c, libmisc/tz.c, lib/port.c, lib/fputsx.c: libmisc/pwd_init.c, libmisc/tz.c, lib/port.c, lib/fputsx.c:
Include "prototypes.h" to make sure the exported prototypes are Include "prototypes.h" to make sure the exported prototypes are
the ones used for the definition of functions. the ones used for the definition of functions.
* libmisc/console.c: Define is_listed() as static and add its
prototype.
2008-01-01 Nicolas François <nicolas.francois@centraliens.net> 2008-01-01 Nicolas François <nicolas.francois@centraliens.net>

View File

@ -34,13 +34,15 @@
#ident "$Id$" #ident "$Id$"
/* local function prototypes */
static int is_listed (const char *cfgin, const char *tty, int def);
/* /*
* This is now rather generic function which decides if "tty" is listed * This is now rather generic function which decides if "tty" is listed
* under "cfgin" in config (directly or indirectly). Fallback to default if * under "cfgin" in config (directly or indirectly). Fallback to default if
* something is bad. * something is bad.
*/ */
int is_listed (const char *cfgin, const char *tty, int def) static int is_listed (const char *cfgin, const char *tty, int def)
{ {
FILE *fp; FILE *fp;
char buf[200], *cons, *s; char buf[200], *cons, *s;