mirror of
https://github.com/RRZE-HPC/asmbench.git
synced 2026-01-07 04:50:05 +01:00
7 lines
100 B
C
7 lines
100 B
C
#include <stdio.h>
|
|
int test(int);
|
|
int main() {
|
|
printf("%d\n", test(123123123));
|
|
return 0;
|
|
}
|