1
0
mirror of https://github.com/irssi/irssi.git synced 2024-09-01 04:14:16 -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);
}
void mainwindows_resize_horiz(int xdiff)
static void mainwindows_resize_horiz(int xdiff)
{
GSList *tmp;

View File

@ -624,7 +624,7 @@ STATUSBAR_REC *statusbar_find(STATUSBAR_GROUP_REC *group, const char *name,
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;

View File

@ -7,7 +7,7 @@
#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;
HE *he;

View File

@ -100,7 +100,7 @@ static char *sig_perl_expando(SERVER_REC *server, void *item, int *free_ret)
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;
HE *he;

View File

@ -1,6 +1,6 @@
#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;
char *module, *str;