diff options
| author | Eli Zaretskii | 2024-09-05 08:38:16 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2024-09-05 08:38:16 +0300 |
| commit | df57e44a08fd5c7dc159254a40f5d2e4d008e8df (patch) | |
| tree | b6616ac37793693fc35d63f5a4a4060fc964e893 /lib | |
| parent | 91e7b47d6c56e7963be232de8057e1a3f710f1b5 (diff) | |
| download | emacs-df57e44a08fd5c7dc159254a40f5d2e4d008e8df.tar.gz emacs-df57e44a08fd5c7dc159254a40f5d2e4d008e8df.zip | |
; Another fix for str2sig.h
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/sig2str.h | 4 |
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__ |
| 36 | int sig2str (int, char *); | 36 | int sig2str (int, char *); |
| 37 | #endif | 37 | #endif |
| 38 | #ifndef HAVE_STR2SIG | 38 | #ifdef __MINGW32__ |
| 39 | int str2sig (char const *, int *); | 39 | int str2sig (char const *, int *); |
| 40 | #endif | 40 | #endif |
| 41 | 41 | ||