From d5fddd91b966424bb63e943e789704d52382cc18 Mon Sep 17 00:00:00 2001 From: Daniel Golle Date: Thu, 22 Oct 2015 23:15:58 +0200 Subject: explicitely ignore return value of symlink(3) call glibc sets __attribute_warn_unused_result__ on symlink(3) if FORTIFY_SOURCE is set. This breaks procd which deliberately ignores the result of the symlink(3) call early during init as there wouldn't be anything better to do in that case other than ignoring the error and trying to survive. Introduce libc-compat.h to work-around libc anomalities. Signed-off-by: Daniel Golle --- libc-compat.h | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 libc-compat.h (limited to 'libc-compat.h') diff --git a/libc-compat.h b/libc-compat.h new file mode 100644 index 0000000..9435346 --- /dev/null +++ b/libc-compat.h @@ -0,0 +1,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 -- cgit v1.2.3