aboutsummaryrefslogtreecommitdiff
path: root/include/assert.h
Commit message (Collapse)AuthorAgeFilesLines
* include: Remove ancient SCCS tags.Warner Losh2023-11-271-2/+0
| | | | | | | | Remove ancient SCCS tags from the tree, automated scripting, with two minor fixup to keep things compiling. All the common forms in the tree were removed with a perl script. Sponsored by: Netflix
* Remove $FreeBSD$: one-line .h patternWarner Losh2023-08-161-1/+0
| | | | Remove /^\s*\*+\s*\$FreeBSD\$.*$\n/
* include: further adoption of SPDX licensing ID tags.Pedro F. Giffuni2017-11-201-0/+2
| | | | | | | | | | | | | | | | | Mainly focus on files that use BSD 3-Clause license. The Software Package Data Exchange (SPDX) group provides a specification to make it easier for automated tools to detect and summarize well known opensource licenses. We are gradually adopting the specification, noting that the tags are considered only advisory and do not, in any way, superceed or replace the license texts. Special thanks to Wind River for providing access to "The Duke of Highlander" tool: an older (2014) run over FreeBSD tree was useful as a starting point. Notes: svn path=/head/; revision=326024
* Don't define static_assert for C++.Ed Schouten2011-12-291-1/+10
| | | | | | | | | | | | | | | | | | Even though _Static_assert() is pretty robust for C code, it cannot work correctly with C++ code. This is due to the fact that C++ template parameters may contain commas that are not enclosed in parentheses. For example: static_assert(foo<int, int>::bar == baz, "..."); This causes _Static_assert to be called with an excessive number of parameters. If you want to use static_assert in C++, just use a C++11 compiler. Reported on: current@, ports@ Notes: svn path=/head/; revision=228955
* As per C11, add static_assert() to <assert.h>.Ed Schouten2011-12-261-0/+6
| | | | Notes: svn path=/head/; revision=228902
* Add missing __dead2 to __assert().Ed Schouten2011-01-091-1/+1
| | | | | | | | | | | __assert() is called when an assertion fails. After printing an error message, it will call abort(). abort() never returns, hence it has the __dead2 attribute. Also add this attribute to __assert(). MFC after: 3 weeks Notes: svn path=/head/; revision=217207
* Remove the Berkeley clause 3's.Warner Losh2010-02-161-5/+1
| | | | | | | Add a few $FreeBSD$ Notes: svn path=/head/; revision=203964
* Only protect the prototypes with #ifndef _ASSERT_H_, the standardsPoul-Henning Kamp2007-12-011-3/+2
| | | | | | | specifically allow changes to the NDEBUG macro between #includes of assert.h Notes: svn path=/head/; revision=174133
* Add missing #ifndef _ASSERT_H_ protection against multiple inclusionsPoul-Henning Kamp2007-12-011-0/+4
| | | | Notes: svn path=/head/; revision=174131
* Breath deep and take __P out of the system include files.Warner Losh2002-03-231-6/+1
| | | | | | | | | # This appears to not break X11, but I'm having problems compiling the # glide part of the server with or without this patch, so I can't tell # for sure. Notes: svn path=/head/; revision=93032
* Restore K&R prototype. Fix other style bugs.Mike Barcroft2001-10-271-8/+9
| | | | | | | Reviewed by: asmodai, bde Notes: svn path=/head/; revision=85605
* Add $FreeBSD$.Jeroen Ruigrok van der Werven2001-10-241-3/+6
| | | | | | | | | Change assert() macro to print failing function name. Change K&R function prototype wrapper to ANSI prototype. This makes us C99 conforming. Notes: svn path=/head/; revision=85421
* BSD 4.4 Lite Include SourcesRodney W. Grimes1994-05-241-0/+65
Notes: svn path=/head/; revision=1539