comparison mcabber/src/main.c @ 336:eb994ee40029

Make some functions static
author Mikael Berthe <mikael@lilotux.net>
date Mon, 18 Jul 2005 21:27:08 +0100
parents db5bebe96c89
children dea407d53fe6
comparison
equal deleted inserted replaced
335:3ec329a1c621 336:eb994ee40029
129 } else { 129 } else {
130 ut_WriteLog("Caught signal: %d\n", signum); 130 ut_WriteLog("Caught signal: %d\n", signum);
131 } 131 }
132 } 132 }
133 133
134 void ask_password(void) 134 static void ask_password(void)
135 { 135 {
136 char *password, *p; 136 char *password, *p;
137 size_t passsize = 128; 137 size_t passsize = 128;
138 struct termios orig, new; 138 struct termios orig, new;
139 int nread; 139 int nread;
163 settings_set(SETTINGS_TYPE_OPTION, "password", password); 163 settings_set(SETTINGS_TYPE_OPTION, "password", password);
164 free(password); 164 free(password);
165 return; 165 return;
166 } 166 }
167 167
168 void credits(void) 168 static void credits(void)
169 { 169 {
170 printf(MCABBER_VERSION "\n"); 170 printf(MCABBER_VERSION "\n");
171 printf(EMAIL "\n"); 171 printf(EMAIL "\n");
172 } 172 }
173 173