00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015 #ifndef __ASSERT_H__
00016 #define __ASSERT_H__
00017
00018 #include <pspkernel.h>
00019 #include <stdio.h>
00020
00021 #ifdef NDEBUG
00022 #define assert(cond)
00023 #else
00024 #ifdef __cplusplus
00025 extern "C" {
00026 #endif
00027 int __assert_fail (const char *assertion, const char *file, unsigned int line) __attribute__((noreturn));
00028 #ifdef __cplusplus
00029 }
00030 #endif
00031 #define assert(cond) (void)((cond)?0:__assert_fail(#cond, __FILE__, __LINE__))
00032 #endif
00033
00034 #endif