mirror of https://github.com/flysand7/ciabatta.git
8 lines
141 B
C
8 lines
141 B
C
|
// MSVC won't use my <assert.h> unless i provide path explicitly
|
||
|
// idk
|
||
|
#include"..\inc\assert.h"
|
||
|
int main()
|
||
|
{
|
||
|
assert(0);
|
||
|
return 0;
|
||
|
}
|