mirror of
https://github.com/Noratrieb/jompiler.git
synced 2026-01-14 06:05:00 +01:00
12 lines
207 B
C
12 lines
207 B
C
// #include<elf.h>
|
|
|
|
int main(int argc, int argv)
|
|
{
|
|
int x = 100;
|
|
return thisismyfakeconstantbecauseidonthaveconstant(x - 1);
|
|
}
|
|
|
|
int thisismyfakeconstantbecauseidonthaveconstant(int x)
|
|
{
|
|
return 1 + 1;
|
|
}
|