1#ifndef _COMPAT_STDLIB_H 2#define _COMPAT_STDLIB_H 3 4#ifdef __cplusplus 5extern "C" { 6#endif 7 8int getloadavg(double loadavg[], int nelem); 9 10#ifdef __cplusplus 11} 12#endif 13 14#include_next <stdlib.h> 15 16#endif 17 18