The Meson Build System http://mesonbuild.com/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

16 lines
232 B

#include <stdio.h>
#include "../lib.h"
int get_stodep_value (void);
int main(void) {
int val;
val = get_stodep_value ();
if (val != 1) {
printf("st1 value was %i instead of 1\n", val);
return -1;
}
return 0;
}