assert.h revision 1.25
11.24Skamil/* $NetBSD: assert.h,v 1.25 2020/04/17 15:22:34 kamil Exp $ */ 21.6Scgd 31.5Scgd/*- 41.5Scgd * Copyright (c) 1992, 1993 51.5Scgd * The Regents of the University of California. All rights reserved. 61.5Scgd * (c) UNIX System Laboratories, Inc. 71.5Scgd * All or some portions of this file are derived from material licensed 81.5Scgd * to the University of California by American Telephone and Telegraph 91.5Scgd * Co. or Unix System Laboratories, Inc. and are reproduced herein with 101.5Scgd * the permission of UNIX System Laboratories, Inc. 111.5Scgd * 121.5Scgd * Redistribution and use in source and binary forms, with or without 131.5Scgd * modification, are permitted provided that the following conditions 141.5Scgd * are met: 151.5Scgd * 1. Redistributions of source code must retain the above copyright 161.5Scgd * notice, this list of conditions and the following disclaimer. 171.5Scgd * 2. Redistributions in binary form must reproduce the above copyright 181.5Scgd * notice, this list of conditions and the following disclaimer in the 191.5Scgd * documentation and/or other materials provided with the distribution. 201.15Sagc * 3. Neither the name of the University nor the names of its contributors 211.5Scgd * may be used to endorse or promote products derived from this software 221.5Scgd * without specific prior written permission. 231.5Scgd * 241.5Scgd * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 251.5Scgd * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 261.5Scgd * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 271.5Scgd * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 281.5Scgd * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 291.5Scgd * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 301.5Scgd * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 311.5Scgd * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 321.5Scgd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 331.5Scgd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 341.5Scgd * SUCH DAMAGE. 351.5Scgd * 361.6Scgd * @(#)assert.h 8.2 (Berkeley) 1/21/94 371.5Scgd */ 381.5Scgd 391.5Scgd/* 401.5Scgd * Unlike other ANSI header files, <assert.h> may usefully be included 411.5Scgd * multiple times, with and without NDEBUG defined. 421.5Scgd */ 431.5Scgd 441.12Skleink#include <sys/cdefs.h> 451.13Sbjh21#include <sys/featuretest.h> 461.20Schristos#include <sys/null.h> 471.12Skleink 481.5Scgd#undef assert 491.5Scgd 501.5Scgd#ifdef NDEBUG 511.17Skleink# ifndef __lint__ 521.12Skleink# define assert(e) (__static_cast(void,0)) 531.17Skleink# else /* !__lint__ */ 541.7Schristos# define assert(e) 551.17Skleink# endif /* __lint__ */ 561.7Schristos#else /* !NDEBUG */ 571.9Skleink# if __STDC__ 581.10Skleink# define assert(e) \ 591.12Skleink ((e) ? __static_cast(void,0) : __assert13(__FILE__, __LINE__, \ 601.12Skleink __assert_function__, #e)) 611.7Schristos# else /* PCC */ 621.10Skleink# define assert(e) \ 631.12Skleink ((e) ? __static_cast(void,0) : __assert13(__FILE__, __LINE__, \ 641.12Skleink __assert_function__, "e")) 651.9Skleink# endif /* !__STDC__ */ 661.7Schristos#endif /* NDEBUG */ 671.13Sbjh21 681.8Slukem#undef _DIAGASSERT 691.8Slukem#if !defined(_DIAGNOSTIC) 701.17Skleink# if !defined(__lint__) 711.12Skleink# define _DIAGASSERT(e) (__static_cast(void,0)) 721.17Skleink# else /* !__lint__ */ 731.8Slukem# define _DIAGASSERT(e) 741.17Skleink# endif /* __lint__ */ 751.8Slukem#else /* _DIAGNOSTIC */ 761.9Skleink# if __STDC__ 771.10Skleink# define _DIAGASSERT(e) \ 781.12Skleink ((e) ? __static_cast(void,0) : __diagassert13(__FILE__, __LINE__, \ 791.12Skleink __assert_function__, #e)) 801.8Slukem# else /* !__STDC__ */ 811.10Skleink# define _DIAGASSERT(e) \ 821.12Skleink ((e) ? __static_cast(void,0) : __diagassert13(__FILE__, __LINE__, \ 831.12Skleink __assert_function__, "e")) 841.8Slukem# endif 851.8Slukem#endif /* _DIAGNOSTIC */ 861.8Slukem 871.8Slukem 881.19Sgmcgarry#if defined(__lint__) 891.19Sgmcgarry#define __assert_function__ (__static_cast(const void *,0)) 901.19Sgmcgarry#elif defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L 911.10Skleink#define __assert_function__ __func__ 921.10Skleink#elif __GNUC_PREREQ__(2, 6) 931.10Skleink#define __assert_function__ __PRETTY_FUNCTION__ 941.10Skleink#else 951.12Skleink#define __assert_function__ (__static_cast(const void *,0)) 961.10Skleink#endif 971.10Skleink 981.11Schristos#ifndef __ASSERT_DECLARED 991.11Schristos#define __ASSERT_DECLARED 1001.5Scgd__BEGIN_DECLS 1011.21Sjoerg__dead void __assert(const char *, int, const char *); 1021.21Sjoerg__dead void __assert13(const char *, int, const char *, const char *); 1031.18Sperryvoid __diagassert(const char *, int, const char *); 1041.18Sperryvoid __diagassert13(const char *, int, const char *, const char *); 1051.5Scgd__END_DECLS 1061.11Schristos#endif /* __ASSERT_DECLARED */ 1071.22Skamil 1081.25Skamil#if defined(_ISOC11_SOURCE) || (__STDC_VERSION__ - 0) >= 201101L 1091.24Skamil#ifndef static_assert 1101.22Skamil#define static_assert _Static_assert 1111.22Skamil#endif /* static_assert */ 1121.22Skamil#endif 113