2
0
mirror of https://gitlab.com/ita1024/waf.git synced 2024-11-19 00:17:12 +01:00
waf/demos/asm/main.c

11 lines
129 B
C
Raw Normal View History

2011-09-10 11:13:51 +02:00
#include <stdio.h>
int mult10(int);
int main()
{
int asm_val = mult10(2);
printf("From ASM: %d\n", asm_val);
return 0;
}