main.c 193 B

123456789101112
  1. #include "meson_test_function.h"
  2. #include <stdio.h>
  3. int main() {
  4. if (meson_test_function() != 19) {
  5. printf("Bad meson_test_function()\n");
  6. return 1;
  7. }
  8. return 0;
  9. }