We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 618e2c2 + c0eb83e commit 19eaa81Copy full SHA for 19eaa81
libc-test/semver/windows.txt
@@ -247,6 +247,7 @@ localtime_s
247
lseek
248
lseek64
249
malloc
250
+_msize
251
memchr
252
memcmp
253
memcpy
src/windows/mod.rs
@@ -345,6 +345,7 @@ extern "C" {
345
pub fn strtoull(s: *const c_char, endp: *mut *mut c_char, base: c_int) -> c_ulonglong;
346
pub fn calloc(nobj: size_t, size: size_t) -> *mut c_void;
347
pub fn malloc(size: size_t) -> *mut c_void;
348
+ pub fn _msize(p: *mut c_void) -> size_t;
349
pub fn realloc(p: *mut c_void, size: size_t) -> *mut c_void;
350
pub fn free(p: *mut c_void);
351
pub fn abort() -> !;
0 commit comments