service: get rid of service_init and service_validate_init, use static avl tree initi...
[project/procd.git] / libc-compat.h
1 #ifndef __PROCD_LIBC_COMPAT_H
2 #define __PROCD_LIBC_COMPAT_H
3
4 #if defined(__GLIBC__) && !defined(__UCLIBC__)
5 static inline int ignore(int x) {return x;}
6 #else
7 #define ignore(x) x
8 #endif
9
10 #endif