summaryrefslogtreecommitdiffstats
path: root/test cases/common/133 c cpp and asm/main.c
blob: 293258f5120881d774a2904a7e1781b1b3b628cd (plain)
1
2
3
4
5
6
7
8
#include <stdio.h>

int get_retval(void);

int main(void) {
  printf("C seems to be working.\n");
  return get_retval();
}