diff options
author | Andrew Cagney <cagney@redhat.com> | 2002-07-11 13:50:50 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2002-07-11 13:50:50 +0000 |
commit | 9f096c6421ed03bc720c090d6eecc9f7de8fe3b0 (patch) | |
tree | 08217865fabba32b6e4f0a06088a816d61713928 /gdb/win32-nat.c | |
parent | e99b7264c5f39b212d766449c02d589d9cdb2256 (diff) | |
download | gdb-9f096c6421ed03bc720c090d6eecc9f7de8fe3b0.tar.gz |
Fix some K&R isms.
Diffstat (limited to 'gdb/win32-nat.c')
-rw-r--r-- | gdb/win32-nat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/win32-nat.c b/gdb/win32-nat.c index 901db277321..e0377c5afe4 100644 --- a/gdb/win32-nat.c +++ b/gdb/win32-nat.c @@ -1334,7 +1334,7 @@ static BOOL WINAPI (*DebugSetProcessKillOnExit)(BOOL); static BOOL WINAPI (*DebugActiveProcessStop)(DWORD); static int -has_detach_ability () +has_detach_ability (void) { static HMODULE kernel32 = NULL; |