Skip to content
Snippets Groups Projects
Commit e1d88cb5 authored by Bryant Mairs's avatar Bryant Mairs
Browse files

Add MAP_ANONYMOUS to DragonFlyBSD and FreeBSD

parent 68463056
No related branches found
No related tags found
No related merge requests found
......@@ -336,6 +336,7 @@ pub const MAP_SHARED: ::c_int = 0x0001;
pub const MAP_PRIVATE: ::c_int = 0x0002;
pub const MAP_FIXED: ::c_int = 0x0010;
pub const MAP_ANON: ::c_int = 0x1000;
pub const MAP_ANONYMOUS: ::c_int = MAP_ANON;
pub const MAP_FAILED: *mut ::c_void = !0 as *mut ::c_void;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment