brintos

brintos / llvm-project-archived public Read only

0
0
Text · 258 B · 73b7768 Raw
11 lines · c
1 2#pragma clang system_header3 4@class NSString;5 6// Do not emit warnings when using NSLocalizedString7extern NSString *GetLocalizedString(NSString *str);8#define NSLocalizedString(key) GetLocalizedString(key)9 10#define NSAssert(fmt, arg) NSLog(fmt, arg, 0, 0)11