diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2010-07-06 16:22:29 +0200 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2010-07-06 16:22:29 +0200 |
commit | b56ceb92bf4d470af2e9172d1fcd4d85232c40a6 (patch) | |
tree | 50ab60b4715be45ed671c386c5b9336b45443539 /src/w32heap.c | |
parent | 7af07b967171736a35e0af8b6ecf6feb072184dc (diff) |
src/w32*.c: Convert function definitions to standard C.
Diffstat (limited to 'src/w32heap.c')
-rw-r--r-- | src/w32heap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/w32heap.c b/src/w32heap.c index 440388c6ea..e307694a56 100644 --- a/src/w32heap.c +++ b/src/w32heap.c @@ -222,7 +222,7 @@ sbrk (unsigned long increment) was allocated by something else; GNU malloc detects when there is a jump in the sbrk values, and starts a new heap block. */ void -init_heap () +init_heap (void) { PIMAGE_DOS_HEADER dos_header; PIMAGE_NT_HEADERS nt_header; |