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