mirror of https://github.com/WebAssembly/wasi-sdk
8 lines
94 B
8 lines
94 B
5 years ago
|
#include <assert.h>
|
||
|
#include <stdbool.h>
|
||
|
|
||
|
int main(void) {
|
||
|
assert(false);
|
||
|
return 0;
|
||
|
}
|