Add memset
diff --git a/src/lib.rs b/src/lib.rs
index 18c3c85..0f7a5b5 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -245,6 +245,7 @@
pub fn memcmp(cx: *const c_void, ct: *const c_void, n: size_t) -> c_int;
pub fn memcpy(dest: *mut c_void, src: *const c_void, n: size_t) -> *mut c_void;
pub fn memmove(dest: *mut c_void, src: *const c_void, n: size_t) -> *mut c_void;
+ pub fn memset(dest: *mut c_void, c: c_int, n: size_t) -> *mut c_void;
}
// These are all inline functions on android, so they end up just being entirely