diff options
| author | joerg <joerg@NetBSD.org> | 2011-09-16 15:38:03 +0000 |
|---|---|---|
| committer | joerg <joerg@NetBSD.org> | 2011-09-16 15:38:03 +0000 |
| commit | 0bf8553d3c69575f5a2c8288661d1c1feccc5fd8 (patch) | |
| tree | 2627b320e3464d065dcdcbe5786a6c26e2463068 /usr.bin/make/make.h | |
| parent | 6e78c32e77d41adb6477379ecc3d1900f6304435 (diff) | |
Use __dead consistently. If it doesn't exist, define it away.
Diffstat (limited to 'usr.bin/make/make.h')
| -rw-r--r-- | usr.bin/make/make.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/usr.bin/make/make.h b/usr.bin/make/make.h index 37e3d1e3fba..04b2ebc80d3 100644 --- a/usr.bin/make/make.h +++ b/usr.bin/make/make.h @@ -1,4 +1,4 @@ -/* $NetBSD: make.h,v 1.86 2011/05/04 20:38:32 sjg Exp $ */ +/* $NetBSD: make.h,v 1.87 2011/09/16 15:38:04 joerg Exp $ */ /* * Copyright (c) 1988, 1989, 1990, 1993 @@ -111,6 +111,10 @@ #endif #endif +#if !defined(__dead) +#define __dead +#endif + #include "sprite.h" #include "lst.h" #include "hash.h" |
