mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-13 11:23:14 +01:00
14 lines
196 B
D
14 lines
196 B
D
module internal.contract;
|
|
|
|
extern(C):
|
|
|
|
void exit(int);
|
|
|
|
void _d_assert(bool cond, uint line, char* msg)
|
|
{
|
|
if (!cond) {
|
|
printf("Aborted(%u): %s\n", line, msg);
|
|
exit(1);
|
|
}
|
|
}
|