1 #ifndef MALLOC_PROVIDED
2 /* msize.c -- a wrapper for malloc_usable_size.  */
3 
4 #include <_ansi.h>
5 #include <reent.h>
6 #include <stdlib.h>
7 #include <malloc.h>
8 
9 #ifndef _REENT_ONLY
10 
11 size_t
12 _DEFUN (malloc_usable_size, (ptr),
13 	_PTR ptr)
14 {
15   return _malloc_usable_size_r (_REENT, ptr);
16 }
17 
18 #endif
19 #endif
20