mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
Imported C functions and variables are not necessarily public in their modules. rdar://100874714
9 lines
86 B
C
9 lines
86 B
C
|
|
#include "c-module.h"
|
|
|
|
long privateCFunc() {
|
|
return 123;
|
|
}
|
|
|
|
long privateCVar = 27;
|