comparison src/signals.h @ 12323:fc464a0abccc

[gaim-migrate @ 14627] Function prototypes need to be of the form foo(void); instead of foo(); for function that don't take any arguments. This allows the compiler to detect mistakes were someone passes arguments to such a function. committer: Tailor Script <tailor@pidgin.im>
author Richard Laager <rlaager@wiktel.com>
date Sun, 04 Dec 2005 18:19:56 +0000
parents 5bc3d67ceb24
children a1e241dd50b6
comparison
equal deleted inserted replaced
12322:c7ae1fd0827d 12323:fc464a0abccc
255 va_list args); 255 va_list args);
256 256
257 /** 257 /**
258 * Initializes the signals subsystem. 258 * Initializes the signals subsystem.
259 */ 259 */
260 void gaim_signals_init(); 260 void gaim_signals_init(void);
261 261
262 /** 262 /**
263 * Uninitializes the signals subsystem. 263 * Uninitializes the signals subsystem.
264 */ 264 */
265 void gaim_signals_uninit(); 265 void gaim_signals_uninit(void);
266 266
267 /*@}*/ 267 /*@}*/
268 268
269 /**************************************************************************/ 269 /**************************************************************************/
270 /** @name Marshal Functions */ 270 /** @name Marshal Functions */