diff --git a/libguile/scmsigs.c b/libguile/scmsigs.c index 14fb71d15..c85545bae 100644 --- a/libguile/scmsigs.c +++ b/libguile/scmsigs.c @@ -65,17 +65,11 @@ -/* SIGRETTYPE is the type that signal handlers return. See */ +/* SIGRETTYPE is the type that signal handlers return. See . + We used to use Autoconf macro 'AC_TYPE_SIGNAL' to define 'RETSIGTYPE', + and then define SIGRETTYPE to that, but that's no longer necessary. */ -#ifdef RETSIGTYPE -# define SIGRETTYPE RETSIGTYPE -#else -# ifdef STDC_HEADERS -# define SIGRETTYPE void -# else -# define SIGRETTYPE int -# endif -#endif +#define SIGRETTYPE void