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.
17 lines
234 B
17 lines
234 B
5 years ago
|
#include <stdio.h>
|
||
|
|
||
|
#include "../lib.h"
|
||
|
|
||
|
int get_stshdep_value (void);
|
||
|
|
||
|
int main(void) {
|
||
|
int val;
|
||
|
|
||
|
val = get_stshdep_value ();
|
||
|
if (val != 1) {
|
||
|
printf("st1 value was %i instead of 1\n", val);
|
||
|
return -1;
|
||
|
}
|
||
|
return 0;
|
||
|
}
|