DWARF stuff...
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

26 lines
388 B

#include <stdio.h>
#include <unistd.h>
#include "001-simple-inc.c"
int main()
{
int i;
int arr[10];
for(i = 0;i < 10; ++i) {
arr[i] = i * i * i / 10;
}
int pipa = 0;
int boba = 1;
int peppa = pipa / boba + 2 * (boba / 2) - 1
+ pipa * pipa / boba;
foo(3);
pipa += 4;
boba = foo(2) - foo(1);
return 0;
}