Skip to content

Commit

Permalink
Replace #import with #include to compile on VisualStudio
Browse files Browse the repository at this point in the history
  • Loading branch information
megCanicalKb committed Mar 31, 2018
1 parent 06cfb58 commit d6e7bd4
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 d6e7bd4

Please sign in to comment.