| commit | e66e227dbe165b791348447a02df81a4a9cfc8d9 | [log] [tgz] |
|---|---|---|
| author | Eric Pouech <eric.pouech@wanadoo.fr> | Mon Feb 06 13:13:28 2006 +0100 |
| committer | Alexandre Julliard <julliard@winehq.org> | Mon Feb 06 13:13:28 2006 +0100 |
| tree | 3fe5e1c17313843bac745548ab833936d7b651d2 | |
| parent | 3c0e5eed83ed40db5728b0a2f5d39c4d6d2e01c9 [diff] [blame] |
Fixes for missing prototypes warnings.
diff --git a/loader/preloader.c b/loader/preloader.c index 6f07692..1ca6d83 100644 --- a/loader/preloader.c +++ b/loader/preloader.c
@@ -153,7 +153,7 @@ * build the preloader with "-nostartfiles -nodefaultlibs", we have to * provide our own (empty) version, otherwise linker fails. */ -void __bb_init_func() { return; } +void __bb_init_func(void) { return; } /* similar to the above but for -fstack-protector */ void *__stack_chk_guard = 0;