Sign in
android
/
platform
/
external
/
python
/
cpython2
/
85a5fbbdfea617f6cc8fae82c9e8c2b5c424436d
/
.
/
Include
/
assert.h
blob: e8edafc33b55d9825e9e338246f46406d6b5a0f7 [
file
] [
log
] [
blame
]
#define
assert
(
e
)
{
if
(!(
e
))
{
printf
(
"Assertion failed\n"
);
abort
();
}
}