libc-compat.h 193 B

12345678910
  1. #ifndef __PROCD_LIBC_COMPAT_H
  2. #define __PROCD_LIBC_COMPAT_H
  3. #if defined(__GLIBC__) && !defined(__UCLIBC__)
  4. static inline int ignore(int x) {return x;}
  5. #else
  6. #define ignore(x) x
  7. #endif
  8. #endif