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
Check for SYS/GL during library init. Reason is that
[AROS.git]
/
test
/
clib
/
abort.c
blob
4136c5370e9e3fa401dd4d71ea53c64f91299ecb
1
/*
2
Copyright © 1995-2014, The AROS Development Team. All rights reserved.
3
$Id$
4
*/
5
6
#include <stdlib.h>
7
8
#include <aros/debug.h>
9
10
int
main
(
void
)
11
{
12
abort
();
13
14
bug
(
"Abort() did not work!
\n
"
);
15
16
return
20
;
17
}