repo.or.cz
/
AROS.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
build/include the gpio.resource
[AROS.git]
/
test
/
clib
/
assert.c
blob
006f6121b062cbdbba009ee75df05cd596fde26b
1
/*
2
Copyright © 2013-2014, The AROS Development Team. All rights reserved.
3
$Id$
4
*/
5
6
#include <assert.h>
7
#include <stdio.h>
8
9
int
main
(
void
)
10
{
11
printf
(
"Expecting a failed assertion...
\n
"
);
12
assert
(
0
);
13
14
return
20
;
15
}