]> git.saurik.com Git - apple/ld64.git/blob - unit-tests/test-cases/cfstring-and-cstring/foo.c
86b0d6e607c0952bf7d7fc1c7aa4a56a57ef03a2
[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