cansequence: mark functions as static

Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
pull/254/head^2
Marc Kleine-Budde 2014-03-22 18:38:37 +01:00
parent 9841820ea0
commit 2f125e44ce
1 changed files with 2 additions and 2 deletions

View File

@ -32,7 +32,7 @@ enum {
#define CAN_ID_DEFAULT (2) #define CAN_ID_DEFAULT (2)
void print_usage(char *prg) static void print_usage(char *prg)
{ {
fprintf(stderr, "Usage: %s [<can-interface>] [Options]\n" fprintf(stderr, "Usage: %s [<can-interface>] [Options]\n"
"\n" "\n"
@ -54,7 +54,7 @@ void print_usage(char *prg)
prg, CAN_ID_DEFAULT); prg, CAN_ID_DEFAULT);
} }
void sigterm(int signo) static void sigterm(int signo)
{ {
running = 0; running = 0;
} }