mirror of
https://gitlab.com/ita1024/waf.git
synced 2024-11-11 04:38:59 +01:00
11 lines
129 B
C
11 lines
129 B
C
#include <stdio.h>
|
|
|
|
int mult10(int);
|
|
|
|
int main()
|
|
{
|
|
int asm_val = mult10(2);
|
|
printf("From ASM: %d\n", asm_val);
|
|
return 0;
|
|
}
|