Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
python
/
cpython3
/
124967ca8cf7f0ff37f20ba3c7587fc8001dac26
/
.
/
Parser
/
assert.h
blob: e8edafc33b55d9825e9e338246f46406d6b5a0f7 [
file
] [
log
] [
blame
]
#define
assert
(
e
)
{
if
(!(
e
))
{
printf
(
"Assertion failed\n"
);
abort
();
}
}