mirror of
https://github.com/NixOS/patchelf.git
synced 2025-10-16 22:46:51 +08:00
10 lines
130 B
C
10 lines
130 B
C
#include <stdio.h>
|
|
|
|
char buf[16 * 1024 * 1024];
|
|
|
|
int main(int argc, char * * argv)
|
|
{
|
|
printf("Hello World\n");
|
|
return 0;
|
|
}
|