19 lines
309 B
C
19 lines
309 B
C
#include<stdio.h>
|
|
#include<zlib.h>
|
|
|
|
#ifndef REQUIRED_MESON_FLAG1
|
|
#error "REQUIRED_MESON_FLAG1 not set"
|
|
#endif
|
|
|
|
#ifndef REQUIRED_MESON_FLAG2
|
|
#error "REQUIRED_MESON_FLAG2 not set"
|
|
#endif
|
|
|
|
int main(void) {
|
|
printf("Hello World\n");
|
|
void * something = deflate;
|
|
if(something != 0)
|
|
return 0;
|
|
return 1;
|
|
}
|