mirror of
https://github.com/darlinghq/darling-dyld.git
synced 2024-11-23 12:29:44 +00:00
8 lines
58 B
C
8 lines
58 B
C
|
|
int g = 0;
|
|
int* gPtr = &g;
|
|
|
|
int foo() {
|
|
return *gPtr;
|
|
}
|