 f4814901af
			
		
	
	
		f4814901af
		
	
	
	
	
		
			
			This patch moves more includes (most of them, to tell the truth) to common/include directory. This completes the list of includes needed to compile current trunk with the new libc (but to do that you need more patches in queue). This patch also contains some modification (for compilation with new headers) to the common includes under __NBSD_LIBC, the define used in mk script to specialize compilation with new includes.
		
			
				
	
	
		
			24 lines
		
	
	
		
			618 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			618 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #ifndef _ddekit_assert_h
 | |
| #define _ddekit_assert_h
 | |
| #include <ddekit/ddekit.h>
 | |
| 
 | |
| #include <ddekit/printf.h>
 | |
| #include <ddekit/panic.h>
 | |
| 
 | |
| /** \file ddekit/assert.h */
 | |
| 
 | |
| /** Assert that an expression is true and panic if not. 
 | |
|  * \ingroup DDEKit_util
 | |
|  */
 | |
| #define ddekit_assert(expr)	do 									\
 | |
| 	{														\
 | |
| 		if (!(expr)) {										\
 | |
| 			ddekit_print("\033[31;1mDDE: Assertion failed: "#expr"\033[0m\n");	\
 | |
| 			ddekit_printf("  File: %s:%d\n",__FILE__,__LINE__); 		\
 | |
| 			ddekit_printf("  Function: %s()\n", __FUNCTION__);	\
 | |
| 			ddekit_panic("Assertion failed.");				\
 | |
| 		}} while (0);
 | |
| #define Assert ddekit_assert
 | |
| 
 | |
| #endif
 |