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