| 1527 | } |
| 1528 | |
| 1529 | void auto_array_impl(NULLCAutoArray* arr, unsigned int type, int count, void* unused) |
| 1530 | { |
| 1531 | arr->typeID = type; |
| 1532 | arr->len = count; |
| 1533 | arr->ptr = (char*)__newS(typeid__size__int_ref__(&type) * (count), type); |
| 1534 | } |
| 1535 | NULLCAutoArray auto_array__(unsigned type, int count, void* unused) |
| 1536 | { |
| 1537 | NULLCAutoArray res; |
no test coverage detected