summaryrefslogtreecommitdiff
path: root/profile.c
diff options
context:
space:
mode:
Diffstat (limited to 'profile.c')
-rw-r--r--profile.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/profile.c b/profile.c
index 13e13e6f..5b07e223 100644
--- a/profile.c
+++ b/profile.c
@@ -3,7 +3,7 @@
*/
/*
- * Copyright (C) 1999-2021 the Free Software Foundation, Inc.
+ * Copyright (C) 1999-2022 the Free Software Foundation, Inc.
*
* This file is part of GAWK, the GNU implementation of the
* AWK Programming Language.
@@ -119,17 +119,12 @@ set_prof_file(const char *file)
void
init_profiling_signals()
{
-#ifdef __DJGPP__
- signal(SIGINT, dump_and_exit);
- signal(SIGQUIT, just_dump);
-#else /* !__DJGPP__ */
#ifdef SIGHUP
signal(SIGHUP, dump_and_exit);
#endif
#ifdef SIGUSR1
signal(SIGUSR1, just_dump);
#endif
-#endif /* !__DJGPP__ */
}
/* indent --- print out enough tabs */