This website requires JavaScript.
Explore
Help
Sign In
frederik
/
oscar64
Watch
1
Star
0
Fork
You've already forked oscar64
0
Code
Issues
Pull Requests
Actions
Packages
Projects
Releases
Wiki
Activity
6ed4adb0ed
oscar64
/
include
/
assert.c
9 lines
86 B
C
Raw
Blame
History
#
include
"assert.h"
#
include
<stdlib.h>
void
assert
(
bool
b
)
{
if
(
!
b
)
exit
(
-
1
)
;
}
Reference in New Issue
View Git Blame
Copy Permalink