diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2015-04-16 18:02:29 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2015-04-16 18:02:29 +0300 |
commit | 6f250fa2a01864e07c1e9022f36eab740a2793c5 (patch) | |
tree | e77711678bef18e003b614f3c7e3e6c222bb23b4 /main.c | |
parent | 340c6b9945fcf57666648939bb8702a6f64c8e8e (diff) | |
parent | aaa85643b352f867cfe7198f313b4481ad1f544d (diff) | |
download | egawk-6f250fa2a01864e07c1e9022f36eab740a2793c5.tar.gz egawk-6f250fa2a01864e07c1e9022f36eab740a2793c5.tar.bz2 egawk-6f250fa2a01864e07c1e9022f36eab740a2793c5.zip |
Merge branch 'master' into feature/regex-type
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -58,7 +58,7 @@ static void init_args(int argc0, int argc, const char *argv0, char **argv); static void init_vars(void); static NODE *load_environ(void); static NODE *load_procinfo(void); -static RETSIGTYPE catchsig(int sig); +static void catchsig(int sig); #ifdef HAVE_LIBSIGSEGV static int catchsegv(void *fault_address, int serious); static void catchstackoverflow(int emergency, stackoverflow_context_t scp); @@ -1159,7 +1159,7 @@ arg_assign(char *arg, bool initing) /* catchsig --- catch signals */ -static RETSIGTYPE +static void catchsig(int sig) { if (sig == SIGFPE) { |