8 lines
145 B
C
8 lines
145 B
C
|
#include "test.h"
|
||
|
|
||
|
/* Bypasses the CRT, so there's no stdio or BSS initialisation. */
|
||
|
void _m_a_i_n(void)
|
||
|
{
|
||
|
ASSERT(0 == 0);
|
||
|
finished();
|
||
|
}
|