summaryrefslogtreecommitdiffstats
path: root/libc-compat.h
blob: 94353465a5e7a239cb7dbf26030476ba968acbec (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef __PROCD_LIBC_COMPAT_H
#define __PROCD_LIBC_COMPAT_H

#if defined(__GLIBC__) && !defined(__UCLIBC__)
static inline int ignore(int x) {return x;}
#else
#define ignore(x) x
#endif

#endif