We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3d0b15b + d67af79 commit db5eb04Copy full SHA for db5eb04
libc-test/semver/windows.txt
@@ -149,6 +149,7 @@ accept
149
access
150
aligned_malloc
151
aligned_free
152
+aligned_realloc
153
atexit
154
atof
155
atoi
src/windows/mod.rs
@@ -518,6 +518,9 @@ extern "C" {
518
pub fn aligned_malloc(size: size_t, alignment: size_t) -> *mut c_void;
519
#[link_name = "_aligned_free"]
520
pub fn aligned_free(ptr: *mut ::c_void);
521
+ #[link_name = "_aligned_realloc"]
522
+ pub fn aligned_realloc(memblock: *mut ::c_void, size: size_t, alignment: size_t)
523
+ -> *mut c_void;
524
#[link_name = "_putenv"]
525
pub fn putenv(envstring: *const ::c_char) -> ::c_int;
526
#[link_name = "_wputenv"]
0 commit comments