mirror of
https://github.com/mauiaaron/apple2.git
synced 2024-11-15 16:07:09 +00:00
18 lines
307 B
Plaintext
18 lines
307 B
Plaintext
|
//
|
||
|
// Prefix header
|
||
|
//
|
||
|
// The contents of this file are implicitly included at the beginning of every source file.
|
||
|
//
|
||
|
|
||
|
#import <TargetConditionals.h>
|
||
|
|
||
|
#if TARGET_OS_IPHONE
|
||
|
# ifdef __OBJC__
|
||
|
# import <UIKit/UIKit.h>
|
||
|
# endif
|
||
|
#else
|
||
|
# ifdef __OBJC__
|
||
|
# import <Cocoa/Cocoa.h>
|
||
|
# endif
|
||
|
#endif
|