diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2003-06-25 03:37:33 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2003-06-25 03:37:33 +0000 |
commit | c40b6440ed441f569bb89ee27c1695ac0432547b (patch) | |
tree | 4a3ad7d7e667635005df68d686a1178db69df35c /usr.bin/diff/diff.h | |
parent | 8a09840496aac00b47ef80432ea41fc452208dbf (diff) |
exit path signal race safe
Diffstat (limited to 'usr.bin/diff/diff.h')
-rw-r--r-- | usr.bin/diff/diff.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/diff/diff.h b/usr.bin/diff/diff.h index 0aafd79784f..642d8278b38 100644 --- a/usr.bin/diff/diff.h +++ b/usr.bin/diff/diff.h @@ -1,4 +1,4 @@ -/* $OpenBSD: diff.h,v 1.3 2003/06/25 03:02:33 tedu Exp $ */ +/* $OpenBSD: diff.h,v 1.4 2003/06/25 03:37:32 deraadt Exp $ */ /* * Copyright (C) Caldera International Inc. 2001-2002. @@ -118,7 +118,7 @@ void *ralloc(void *, size_t); char *splice(char *, char *); char *copytemp(void); void catchsig(int); -void done(void); +void done(int); void diffdir(char **); void diffreg(void); int max(int, int); |