2 ** Copyright 2002, Travis Geiselbrecht. All rights reserved.
3 ** Copyright 2002, Manuel J. Petit. All rights reserved.
4 ** Distributed under the terms of the NewOS License.
7 #ifndef __newos__libc_assert__hh__
8 #define __newos__libc_assert__hh__
17 void _assert(char const *, int, char const *);
23 # define assert(x) ( (x) ? (void)0 : _assert(__FILE__, __LINE__, #x) )