From 2ac877d8debaf68b0d7957e76be578726389cdf1 Mon Sep 17 00:00:00 2001 From: Daniel Hams Date: Thu, 26 Dec 2019 11:09:06 +0000 Subject: [PATCH] strsignal: add prototype to libdicl headers and bump libdicl version to 0.1.16 --- libdicl/configure.ac | 4 +++- libdicl/src/repl_headers/string.h | 3 +++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/libdicl/configure.ac b/libdicl/configure.ac index d5a4771..f9025c7 100644 --- a/libdicl/configure.ac +++ b/libdicl/configure.ac @@ -1,6 +1,6 @@ AC_PREREQ(2.65) AC_INIT([libdicl], - [0.1.15], + [0.1.16], [daniel.hams@gmail.com]) AC_SUBST(ACLOCAL_AMFLAGS, "-I macros") @@ -21,6 +21,8 @@ AC_DEFINE_UNQUOTED(PACKAGE_SUFFIX, "$PACKAGE_SUFFIX", [Suffix of the package]) AC_STDC_HEADERS AC_PROG_CC +# Force replacement functions for some known +# broken stuff that isn't auto-detected correctly. gl_cv_func_select_supports0=no gl_cv_func_select_detects_ebadf=no gl_cv_func_strtod_works=no diff --git a/libdicl/src/repl_headers/string.h b/libdicl/src/repl_headers/string.h index c59ccc1..ab6e3c7 100644 --- a/libdicl/src/repl_headers/string.h +++ b/libdicl/src/repl_headers/string.h @@ -32,6 +32,9 @@ char *strsep(char **, char*); char *strcasestr(const char*, const char*); +char *strsignal(int sig); +/* If you are looking for an associated sys_siglist - try _sys_siglist */ + #if defined(__cplusplus) } #endif