aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--procps/kill.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/procps/kill.c b/procps/kill.c
index 892a798c5..7a3ef22c8 100644
--- a/procps/kill.c
+++ b/procps/kill.c
@@ -24,6 +24,7 @@
24 * This is needed to avoid collision with kill -9 ... syntax 24 * This is needed to avoid collision with kill -9 ... syntax
25 */ 25 */
26 26
27#ifndef __MINGW32__
27int kill_main(int argc, char **argv); 28int kill_main(int argc, char **argv);
28int kill_main(int argc, char **argv) 29int kill_main(int argc, char **argv)
29{ 30{
@@ -183,3 +184,4 @@ do_it_now:
183 } 184 }
184 return errors; 185 return errors;
185} 186}
187#endif