aboutsummaryrefslogtreecommitdiffstats
path: root/profile.c
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2015-04-16 18:04:04 +0300
committerArnold D. Robbins <arnold@skeeve.com>2015-04-16 18:04:04 +0300
commit56073f0c0343be08ea16b1ea6b34715eacc89a05 (patch)
tree72a7b3a2cc25db82051d55099a30a46bd700495f /profile.c
parent456fd40ebbb78fe31b28bbe0907282c685bce170 (diff)
parentaaa85643b352f867cfe7198f313b4481ad1f544d (diff)
downloadegawk-56073f0c0343be08ea16b1ea6b34715eacc89a05.tar.gz
egawk-56073f0c0343be08ea16b1ea6b34715eacc89a05.tar.bz2
egawk-56073f0c0343be08ea16b1ea6b34715eacc89a05.zip
Merge branch 'master' into feature/shadow-builtins
Diffstat (limited to 'profile.c')
-rw-r--r--profile.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/profile.c b/profile.c
index c6c1e309..dc887e97 100644
--- a/profile.c
+++ b/profile.c
@@ -48,8 +48,8 @@ const char *redir2str(int redirtype);
#define DONT_FREE 1
#define CAN_FREE 2
-static RETSIGTYPE dump_and_exit(int signum) ATTRIBUTE_NORETURN;
-static RETSIGTYPE just_dump(int signum);
+static void dump_and_exit(int signum) ATTRIBUTE_NORETURN;
+static void just_dump(int signum);
/* pretty printing related functions and variables */
@@ -1002,7 +1002,7 @@ pp_string_fp(Func_print print_func, FILE *fp, const char *in_str,
/* just_dump --- dump the profile and function stack and keep going */
-static RETSIGTYPE
+static void
just_dump(int signum)
{
extern INSTRUCTION *code_block;
@@ -1016,7 +1016,7 @@ just_dump(int signum)
/* dump_and_exit --- dump the profile, the function stack, and exit */
-static RETSIGTYPE
+static void
dump_and_exit(int signum)
{
just_dump(signum);