1
0
mirror of https://github.com/irssi/irssi.git synced 2024-09-29 04:45:57 -04:00

Make some functions static.

git-svn-id: file:///var/www/svn.irssi.org/SVN/irssi/trunk@4956 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Emanuele Giaquinta 2008-12-08 17:11:00 +00:00 committed by exg
parent 8a5aa22ed8
commit 48d0135d3e
5 changed files with 5 additions and 5 deletions

View File

@ -434,7 +434,7 @@ static void mainwindows_resize_bigger(int xdiff, int ydiff)
g_slist_free(sorted); g_slist_free(sorted);
} }
void mainwindows_resize_horiz(int xdiff) static void mainwindows_resize_horiz(int xdiff)
{ {
GSList *tmp; GSList *tmp;

View File

@ -624,7 +624,7 @@ STATUSBAR_REC *statusbar_find(STATUSBAR_GROUP_REC *group, const char *name,
return NULL; return NULL;
} }
const char *statusbar_item_get_value(SBAR_ITEM_REC *item) static const char *statusbar_item_get_value(SBAR_ITEM_REC *item)
{ {
const char *value; const char *value;

View File

@ -7,7 +7,7 @@
#define DEFAULT_COMMAND_CATEGORY "Perl scripts' commands" #define DEFAULT_COMMAND_CATEGORY "Perl scripts' commands"
void perl_signal_add_hash(int priority, SV *sv) static void perl_signal_add_hash(int priority, SV *sv)
{ {
HV *hv; HV *hv;
HE *he; HE *he;

View File

@ -100,7 +100,7 @@ static char *sig_perl_expando(SERVER_REC *server, void *item, int *free_ret)
return NULL; return NULL;
} }
void expando_signals_add_hash(const char *key, SV *signals) static void expando_signals_add_hash(const char *key, SV *signals)
{ {
HV *hv; HV *hv;
HE *he; HE *he;

View File

@ -1,6 +1,6 @@
#include "module.h" #include "module.h"
void printformat_perl(TEXT_DEST_REC *dest, char *format, char **arglist) static void printformat_perl(TEXT_DEST_REC *dest, char *format, char **arglist)
{ {
THEME_REC *theme; THEME_REC *theme;
char *module, *str; char *module, *str;