aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorEli Zaretskii2024-09-05 08:38:16 +0300
committerEli Zaretskii2024-09-05 08:38:16 +0300
commitdf57e44a08fd5c7dc159254a40f5d2e4d008e8df (patch)
treeb6616ac37793693fc35d63f5a4a4060fc964e893 /lib
parent91e7b47d6c56e7963be232de8057e1a3f710f1b5 (diff)
downloademacs-df57e44a08fd5c7dc159254a40f5d2e4d008e8df.tar.gz
emacs-df57e44a08fd5c7dc159254a40f5d2e4d008e8df.zip
; Another fix for str2sig.h
Diffstat (limited to 'lib')
-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