8 lines
100 B
C
8 lines
100 B
C
#include <assert.h>
|
|
#include <stdlib.h>
|
|
|
|
int main(void) {
|
|
assert(0);
|
|
return EXIT_SUCCESS;
|
|
}
|