Skip to content

Commit 0301836

Browse files
authored
Merge pull request #107 from yury/cleanup-imports
Cleanup imports.
2 parents 5bc9059 + ed631c2 commit 0301836

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

ios_system.m

+3-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@
55
// Copyright © 2017 N. Holzschuch. All rights reserved.
66
//
77

8-
#import <Foundation/Foundation.h>
8+
9+
#import <UIKit/UIKit.h>
10+
911
#include "ios_system.h"
1012

1113
// ios_system(cmd): Executes the command in "cmd". The goal is to be a drop-in replacement for system(), as much as possible.

ios_system/ios_system.h

-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@
77
//
88

99
#import <Foundation/Foundation.h>
10-
#import <UIKit/UIKit.h>
11-
#import <WebKit/WebKit.h>
1210

1311
//! Project version number for ios_system.
1412
FOUNDATION_EXPORT double ios_systemVersionNumber;

shell_cmds_ios/open.m

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
88
#include <stdio.h>
99
#include "ios_system/ios_system.h"
1010
#include "ios_error.h"
11-
#import <Foundation/Foundation.h>
11+
12+
#import <UIKit/UIKit.h>
1213

1314

1415
NSArray<NSString *> *__known_browsers() {

0 commit comments

Comments
 (0)