diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2013-06-09 08:59:30 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2013-06-09 08:59:30 -0700 |
commit | bf77e2305f392b966805fb7b080570911468709b (patch) | |
tree | dec4b464bdf07bafe9e27349f8e672578db25345 /lib/sig2str.h | |
parent | 7cee6e79fd98257648b3c8d4254b64dcef067ab8 (diff) | |
download | emacs-bf77e2305f392b966805fb7b080570911468709b.tar.gz emacs-bf77e2305f392b966805fb7b080570911468709b.tar.bz2 emacs-bf77e2305f392b966805fb7b080570911468709b.zip |
Merge from gnulib.
This incorporates:
2013-06-02 sig2str: port to C++
2013-05-29 c-ctype, regex, verify: port to gcc -std=c90 -pedantic
Diffstat (limited to 'lib/sig2str.h')
-rw-r--r-- | lib/sig2str.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/sig2str.h b/lib/sig2str.h index d16be98c076..df6bfd39e3d 100644 --- a/lib/sig2str.h +++ b/lib/sig2str.h @@ -27,9 +27,17 @@ /* Size of a buffer needed to hold a signal name like "HUP". */ # define SIG2STR_MAX (sizeof "SIGRTMAX" + INT_STRLEN_BOUND (int) - 1) +#ifdef __cplusplus +extern "C" { +#endif + int sig2str (int, char *); int str2sig (char const *, int *); +#ifdef __cplusplus +} +#endif + #endif /* An upper bound on signal numbers allowed by the system. */ |