Define is_listed() as static and add its prototype.
This commit is contained in:
parent
96bca84ca4
commit
99dc2b1abf
@ -8,6 +8,8 @@
|
||||
libmisc/pwd_init.c, libmisc/tz.c, lib/port.c, lib/fputsx.c:
|
||||
Include "prototypes.h" to make sure the exported prototypes are
|
||||
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>
|
||||
|
||||
|
@ -34,13 +34,15 @@
|
||||
|
||||
#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
|
||||
* under "cfgin" in config (directly or indirectly). Fallback to default if
|
||||
* 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;
|
||||
char buf[200], *cons, *s;
|
||||
|
Loading…
Reference in New Issue
Block a user