Functions display_msg() and check_sync() are only used in numbers.c, so they can be static. Remove inclusions of <numbers.h> from .c files that don't need it.
20 lines
321 B
C
20 lines
321 B
C
/*
|
|
* numbers.h: header for numbers.c
|
|
*
|
|
* written by michael sandrof
|
|
*
|
|
* copyright(c) 1990
|
|
*
|
|
* see the copyright file, or do a help ircii copyright
|
|
*
|
|
* @(#)$Id$
|
|
*/
|
|
|
|
#ifndef __numbers_h_
|
|
#define __numbers_h_
|
|
|
|
char *numeric_banner(void);
|
|
void numbered_command(char *, int, char **);
|
|
|
|
#endif /* __numbers_h_ */
|