Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 281130 | Differences between
and this patch

Collapse All | Expand All

(-)a/src/modules/module_main.c (-3 lines)
Lines 21-29 Link Here
21
 * $Id: module_main.c,v 1.16 2008-06-27 12:29:26 hanke Exp $
21
 * $Id: module_main.c,v 1.16 2008-06-27 12:29:26 hanke Exp $
22
 */
22
 */
23
23
24
/* So that gcc doesn't comply */
25
int getline(char**, size_t*, FILE*);
26
27
#define PROCESS_CMD(command, function) \
24
#define PROCESS_CMD(command, function) \
28
if (!strcmp(cmd_buf, #command"\n")){ \
25
if (!strcmp(cmd_buf, #command"\n")){ \
29
 char *msg; \
26
 char *msg; \
(-)a/src/modules/module_utils.h (-4 lines)
Lines 420-428 void module_report_event_pause(void); Link Here
420
420
421
421
422
422
423
/* So that gcc doesn't complain */
424
int getline(char**, size_t*, FILE*);
425
426
pthread_mutex_t module_stdout_mutex;
423
pthread_mutex_t module_stdout_mutex;
427
424
428
int module_utils_init(void);
425
int module_utils_init(void);
429
- 

Return to bug 281130