]> git.saurik.com Git - apple/ld64.git/blob - unit-tests/test-cases/cfstring-and-cstring/foo.c
ld64-123.2.tar.gz
[apple/ld64.git] / unit-tests / test-cases / cfstring-and-cstring / foo.c
1 #include <CoreFoundation/CFString.h>
2
3 extern void bar();
4
5 int main()
6 {
7 CFStringGetLength(CFSTR("stuff"));
8 bar();
9 return 0;
10 }
11
12