#ifndef WH_MALLOPT_H_1d29abea_ #define WH_MALLOPT_H_1d29abea_ #include /* * NetBSD silently changed the malloc_options interface between 4.0.1 * and 5.1. I really wish they'd stop breaking compatability; it * makes it really messy to create code for more than one NetBSD * version. * * Grrr. */ #if __NetBSD_Version__ < 500000000 #define MALLOC_OPTIONS malloc_options #else #define MALLOC_OPTIONS _malloc_options #endif extern char *MALLOC_OPTIONS; #endif