mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
12 lines
129 B
C
12 lines
129 B
C
|
#include <windows.h>
|
||
|
#include <tchar.h>
|
||
|
#include "assert.h"
|
||
|
|
||
|
|
||
|
void assert( int expression )
|
||
|
{
|
||
|
if( expression==0 )
|
||
|
exit(2);
|
||
|
}
|
||
|
|