wit-bindgen 0.19.1

Rust bindings generator and runtime support for WIT and the component model. Used when compiling Rust programs to the component model.
Documentation
1
2
3
4
5
6
7
8
9
10
// This file is generated by ./ci/rebuild-libcabi-realloc.sh

#include <stdint.h>

extern void *cabi_realloc_wit_bindgen_0_19_1(void *ptr, size_t old_size, size_t align, size_t new_size);

__attribute__((__weak__, __export_name__("cabi_realloc")))
void *cabi_realloc(void *ptr, size_t old_size, size_t align, size_t new_size) {
  return cabi_realloc_wit_bindgen_0_19_1(ptr, old_size, align, new_size);
}