projects
/
project
/
procd.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
ujail: add dependency on syscall-names-h
[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