| 118 | } |
| 119 | |
| 120 | void* mi__expand(void* p, size_t newsize) mi_attr_noexcept { // Microsoft |
| 121 | void* res = mi_expand(p, newsize); |
| 122 | if (res == NULL) { errno = ENOMEM; } |
| 123 | return res; |
| 124 | } |
| 125 | |
| 126 | mi_decl_nodiscard mi_decl_restrict unsigned short* mi_wcsdup(const unsigned short* s) mi_attr_noexcept { |
| 127 | if (s==NULL) return NULL; |
nothing calls this directly
no test coverage detected