mirror of
https://github.com/NixOS/patchelf.git
synced 2025-10-19 11:24:11 +08:00
10 lines
101 B
C
10 lines
101 B
C
#include <stdio.h>
|
|
|
|
int bar();
|
|
|
|
int foo()
|
|
{
|
|
printf("This is foo()!\n");
|
|
return 12 + bar();
|
|
}
|