From: Andre Noll Date: Tue, 11 Nov 2008 20:58:33 +0000 (+0100) Subject: Make close_all_tables() static. X-Git-Tag: v0.1.0~30 X-Git-Url: http://git.tuebingen.mpg.de/?p=adu.git;a=commitdiff_plain;h=f638c88fad8a1350cf56d5f60ddef297ece92805 Make close_all_tables() static. It's only used in adu.c. --- diff --git a/adu.c b/adu.c index dda9fd2..bc06893 100644 --- a/adu.c +++ b/adu.c @@ -120,7 +120,7 @@ static void close_dir_table(void) dir_table = NULL; } -void close_all_tables(void) +static void close_all_tables(void) { close_dir_table(); close_user_tables(); diff --git a/adu.h b/adu.h index 74083ec..3105044 100644 --- a/adu.h +++ b/adu.h @@ -196,7 +196,6 @@ static inline int size_compare(const struct osl_object *obj1, const struct osl_o __printf_2_3 void __log(int, const char*, ...); int open_dir_table(int create); void check_signals(void); -void close_all_tables(void); /* create.c */ int com_create(void);