123456789101112131415161718192021222324252627282930313233 |
- #ifndef __PJ_COMPAT_MALLOC_H__
- #define __PJ_COMPAT_MALLOC_H__
- #if defined(PJ_HAS_MALLOC_H) && PJ_HAS_MALLOC_H != 0
- # include <malloc.h>
- #elif defined(PJ_HAS_STDLIB_H) && PJ_HAS_STDLIB_H != 0
- # include <stdlib.h>
- #endif
- #endif
|