diff options
author | harti <harti@FreeBSD.org> | 2005-03-08 07:45:50 +0000 |
---|---|---|
committer | harti <harti@FreeBSD.org> | 2005-03-08 07:45:50 +0000 |
commit | d28f5e232e0b1f88280ceb6c41ee4b552d18ac76 (patch) | |
tree | 438456c3cee4e4359ba80809763042f366684ced /usr.bin/make/util.h | |
parent | 6bf66a20805545572bd28fec1b5488c4a5d59384 (diff) | |
download | FreeBSD-src-d28f5e232e0b1f88280ceb6c41ee4b552d18ac76.zip FreeBSD-src-d28f5e232e0b1f88280ceb6c41ee4b552d18ac76.tar.gz |
Mark functions that don't return as dead.
Diffstat (limited to 'usr.bin/make/util.h')
-rw-r--r-- | usr.bin/make/util.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/make/util.h b/usr.bin/make/util.h index 25812be..1d65db0 100644 --- a/usr.bin/make/util.h +++ b/usr.bin/make/util.h @@ -76,10 +76,10 @@ do { \ void Debug(const char *, ...); void Error(const char *, ...); -void Fatal(const char *, ...); -void Punt(const char *, ...); -void DieHorribly(void); -void Finish(int); +void Fatal(const char *, ...) __dead2; +void Punt(const char *, ...) __dead2; +void DieHorribly(void) __dead2; +void Finish(int) __dead2; char *estrdup(const char *); void *emalloc(size_t); void *erealloc(void *, size_t); |