aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/sig2str.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/sig2str.h b/lib/sig2str.h
index bfb207777cc..62b6d628f12 100644
--- a/lib/sig2str.h
+++ b/lib/sig2str.h
@@ -32,10 +32,10 @@
32# define SIG2STR_MAX (5 + 1 + 10 + 1 + 2) 32# define SIG2STR_MAX (5 + 1 + 10 + 1 + 2)
33#endif 33#endif
34 34
35#ifndef HAVE_SIG2STR 35#ifdef __MINGW32__
36int sig2str (int, char *); 36int sig2str (int, char *);
37#endif 37#endif
38#ifndef HAVE_STR2SIG 38#ifdef __MINGW32__
39int str2sig (char const *, int *); 39int str2sig (char const *, int *);
40#endif 40#endif
41 41