#ifndef _MALLOPT_H_a75d5501_ #define _MALLOPT_H_a75d5501_ #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