From 33569d2587c10c014631b82e79778347f163fdee Mon Sep 17 00:00:00 2001 From: gabor Date: Thu, 10 Jun 2010 10:28:38 +0000 Subject: - Axe out signal handling code, the shell will take care of this Suggested by: jilles Approved by: delphij (mentor) --- usr.bin/dc/bcode.c | 10 ---------- 1 file changed, 10 deletions(-) (limited to 'usr.bin') diff --git a/usr.bin/dc/bcode.c b/usr.bin/dc/bcode.c index 408a948..024c7cc 100644 --- a/usr.bin/dc/bcode.c +++ b/usr.bin/dc/bcode.c @@ -54,7 +54,6 @@ struct bmachine { }; static struct bmachine bmachine; -static void got_sigint(int); static __inline int readch(void); static __inline void unreadch(void); @@ -221,14 +220,6 @@ static const struct jump_entry jump_table_data[] = { #define JUMP_TABLE_DATA_SIZE \ (sizeof(jump_table_data)/sizeof(jump_table_data[0])) -static void -got_sigint(int ignored __unused) -{ - - putchar('\n'); - exit(0); -} - void init_bmachine(bool extended_registers) { @@ -261,7 +252,6 @@ init_bmachine(bool extended_registers) bmachine.obase = bmachine.ibase = 10; BN_init(&zero); bn_check(BN_zero(&zero)); - signal(SIGINT, got_sigint); } /* Reset the things needed before processing a (new) file */ -- cgit v1.1