diff options
| author | kleink <kleink@NetBSD.org> | 2004-07-01 22:31:28 +0000 |
|---|---|---|
| committer | kleink <kleink@NetBSD.org> | 2004-07-01 22:31:28 +0000 |
| commit | 11f7fb5f29fecfb5cbaec03836b1a0bf0a098e4f (patch) | |
| tree | 7691029ec6d8f29eb0311af392600ef629c7a782 /include/assert.h | |
| parent | c62dff1bf71b37d618d72ee2abb40b8c068105d7 (diff) | |
Tidy up the namespace: lint -> __lint__.
Diffstat (limited to 'include/assert.h')
| -rw-r--r-- | include/assert.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/include/assert.h b/include/assert.h index b17d432ee07..aad757a707f 100644 --- a/include/assert.h +++ b/include/assert.h @@ -1,4 +1,4 @@ -/* $NetBSD: assert.h,v 1.16 2004/05/18 21:03:08 kleink Exp $ */ +/* $NetBSD: assert.h,v 1.17 2004/07/01 22:31:28 kleink Exp $ */ /*- * Copyright (c) 1992, 1993 @@ -47,11 +47,11 @@ #undef assert #ifdef NDEBUG -# ifndef lint +# ifndef __lint__ # define assert(e) (__static_cast(void,0)) -# else /* !lint */ +# else /* !__lint__ */ # define assert(e) -# endif /* lint */ +# endif /* __lint__ */ #else /* !NDEBUG */ # if __STDC__ # define assert(e) \ @@ -66,11 +66,11 @@ #undef _DIAGASSERT #if !defined(_DIAGNOSTIC) -# if !defined(lint) +# if !defined(__lint__) # define _DIAGASSERT(e) (__static_cast(void,0)) -# else /* !lint */ +# else /* !__lint__ */ # define _DIAGASSERT(e) -# endif /* lint */ +# endif /* __lint__ */ #else /* _DIAGNOSTIC */ # if __STDC__ # define _DIAGASSERT(e) \ |
