wit-bindgen 0.55.0

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-libwit-bindgen-cabi.sh

#include <stdint.h>

extern void *cabi_realloc_wit_bindgen_0_55_0(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_55_0(ptr, old_size, align, new_size);
}