diff options
author | Ted Unangst <tedu@cvs.openbsd.org> | 2003-06-25 07:27:00 +0000 |
---|---|---|
committer | Ted Unangst <tedu@cvs.openbsd.org> | 2003-06-25 07:27:00 +0000 |
commit | 8f7a13b20d02710ae7bde7c1adf3e681e08d153b (patch) | |
tree | 7e4338e08eb9fa9cb067fac2e3d7446586c28f70 /usr.bin/diff/diff.c | |
parent | 68c9c60b34f48c399c8202a4b19c315318523632 (diff) |
remove silly signal catcher, and just use done. ok deraadt@
Diffstat (limited to 'usr.bin/diff/diff.c')
-rw-r--r-- | usr.bin/diff/diff.c | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/usr.bin/diff/diff.c b/usr.bin/diff/diff.c index 8eba550652c..65df89d0fc7 100644 --- a/usr.bin/diff/diff.c +++ b/usr.bin/diff/diff.c @@ -1,4 +1,4 @@ -/* $OpenBSD: diff.c,v 1.4 2003/06/25 03:37:32 deraadt Exp $ */ +/* $OpenBSD: diff.c,v 1.5 2003/06/25 07:26:59 tedu Exp $ */ /* * Copyright (C) Caldera International Inc. 2001-2002. @@ -217,13 +217,6 @@ done(int sig) exit(status); } -void -catchsig(int sigraised) -{ - /* print something? */ - done(0); -} - void * talloc(size_t n) { |