em_assert.c

Go to the documentation of this file.
00001 /***************************************************************************/
00034 #include "em_assert.h"
00035 
00036 #if defined(DEBUG_EFM)
00037 
00038 /***************************************************************************/
00060 void assertEFM(const char *file, int line)
00061 {
00062   (void)file;  /* Unused parameter */
00063   (void)line;  /* Unused parameter */
00064 
00065   while (1)
00066     ;
00067 }
00068 
00069 #endif /* DEBUG_EFM */