diff options
author | 2003-06-25 03:37:32 +0000 | |
---|---|---|
committer | 2003-06-25 03:37:32 +0000 | |
commit | a6a14831a52dc2f752e78bcf9046befbc1121990 (patch) | |
tree | fda45fde7bf5068fe1056b40de12d814fde19b7b /usr.bin/diff/diff.h | |
parent | fix lseek (diff) | |
download | wireguard-openbsd-a6a14831a52dc2f752e78bcf9046befbc1121990.tar.xz wireguard-openbsd-a6a14831a52dc2f752e78bcf9046befbc1121990.zip |
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); |