Added llvm in windows support to Changelog

This commit is contained in:
Syrus
2019-07-30 15:56:25 -07:00
parent 22f8b3f3dc
commit 97c6956d98
2 changed files with 3 additions and 2 deletions

View File

@ -1,8 +1,8 @@
use super::common::round_up_to_page_size;
use crate::structs::{LLVMResult, MemProtect};
use libc::{
mmap, mprotect, munmap, MAP_ANON, MAP_PRIVATE, PROT_EXEC, PROT_NONE, PROT_READ,
PROT_WRITE, c_void, siginfo_t
c_void, mmap, mprotect, munmap, siginfo_t, MAP_ANON, MAP_PRIVATE, PROT_EXEC, PROT_NONE,
PROT_READ, PROT_WRITE,
};
use nix::sys::signal::{sigaction, SaFlags, SigAction, SigHandler, SigSet, SIGBUS, SIGSEGV};
use std::ptr;