mirror of
https://github.com/NixOS/patchelf.git
synced 2025-10-19 11:24:11 +08:00
14 lines
194 B
C
14 lines
194 B
C
#include <stdio.h>
|
|
|
|
char buf[16 * 1024 * 1024];
|
|
|
|
int foo();
|
|
|
|
int main(int argc, char * * argv)
|
|
{
|
|
printf("Hello World\n");
|
|
int x = foo();
|
|
printf("Result is %d\n", x);
|
|
return x;
|
|
}
|