repo.or.cz
/
ruby-svn.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
* enc/trans/utf_16_32.erb.c (fun_so_from_utf_32le): implemented.
[ruby-svn.git]
/
wince
/
assert.c
blob
0f4be6849759bcfa8c7b67175193a5642c2932b4
1
#include <windows.h>
2
#include <tchar.h>
3
#include
"assert.h"
4
5
6
void
assert
(
int
expression
)
7
{
8
if
(
expression
==
0
)
9
exit
(
2
);
10
}
11