Skip to content

Commit

Permalink
Merge pull request facebook#51 from facebook/include_vs_import
Browse files Browse the repository at this point in the history
Replace #import with #include to compile on VisualStudio
  • Loading branch information
megCanicalKb authored Mar 31, 2018
2 parents 06cfb58 + d6e7bd4 commit 81be84f
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions fishhook.c
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@
// OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

#import "fishhook.h"

#import <dlfcn.h>
#import <stdlib.h>
#import <string.h>
#import <sys/types.h>
#import <mach-o/dyld.h>
#import <mach-o/loader.h>
#import <mach-o/nlist.h>
#include "fishhook.h"

#include <dlfcn.h>
#include <stdlib.h>
#include <string.h>
#include <sys/types.h>
#include <mach-o/dyld.h>
#include <mach-o/loader.h>
#include <mach-o/nlist.h>

#ifdef __LP64__
typedef struct mach_header_64 mach_header_t;
Expand Down

0 comments on commit 81be84f

Please sign in to comment.