Merge pull request #44 from triplef/foundation-header-additions

Include CoreFoundation and libdispatch in Foundation.h if available.
This commit is contained in:
Fred Kiefer 2019-05-14 17:40:47 +02:00 committed by GitHub
commit c82b0344ec
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -150,4 +150,13 @@
#import <Foundation/NSXMLParser.h>
#import <Foundation/NSZone.h>
#ifdef __has_include
# if __has_include(<CoreFoundation/CoreFoundation.h>)
# include <CoreFoundation/CoreFoundation.h>
# endif
# if __has_include(<dispatch/dispatch.h>)
# include <dispatch/dispatch.h>
# endif
#endif
#endif /* __Foundation_h_GNUSTEP_BASE_INCLUDE */