diff -r 59758314f811 -r d4524d6a4472 Symbian3/Examples/guid-6013a680-57f9-415b-8851-c4fa63356636/fail_8h_source.html --- a/Symbian3/Examples/guid-6013a680-57f9-415b-8851-c4fa63356636/fail_8h_source.html Fri Jun 11 15:24:34 2010 +0100 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,38 +0,0 @@ - - -
- -00001 /* -00002 * fail.h -00003 * Copyright (C) 1998-2000 A.J. van Os; Released under GPL -00004 * -00005 * Description: -00006 * Support for an alternative form of assert() -00007 */ -00008 -00009 #if !defined(__fail_h) -00010 #define __fail_h 1 -00011 -00012 #undef fail -00013 -00014 #if defined(NDEBUG) -00015 #define fail(e) ((void)0) -00016 #else -00017 #define fail(e) ((e) ? __fail(#e, __FILE__, __LINE__) : (void)0) -00018 #endif /* NDEBUG */ -00019 -00020 extern void __fail(char *, char *, int); -00021 -00022 #endif /* __fail_h */ -