зеркало из https://github.com/github/ruby.git
12 строки
129 B
C
12 строки
129 B
C
|
#include <windows.h>
|
||
|
#include <tchar.h>
|
||
|
#include "assert.h"
|
||
|
|
||
|
|
||
|
void assert( int expression )
|
||
|
{
|
||
|
if( expression==0 )
|
||
|
exit(2);
|
||
|
}
|
||
|
|