summaryrefslogtreecommitdiff
path: root/wince/assert.c
blob: 0f4be6849759bcfa8c7b67175193a5642c2932b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <windows.h>
#include <tchar.h>
#include "assert.h"


void assert( int expression )
{
	if( expression==0 )
		exit(2);
}