From 242e3b6bdee92f436bac418d4a0385055fcd7a41 Mon Sep 17 00:00:00 2001 From: Glenn L McGrath Date: Thu, 22 Aug 2002 15:59:18 +0000 Subject: define inline if needed for ANSI C compatability --- include/libbb.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/libbb.h b/include/libbb.h index 0bc356415..252496e0f 100644 --- a/include/libbb.h +++ b/include/libbb.h @@ -48,6 +48,10 @@ # include "sha1.h" #endif +/* Compatability with ANSI C */ +#ifndef inline +# define inline +#endif #if (__GNU_LIBRARY__ < 5) && (!defined __dietlibc__) /* libc5 doesn't define socklen_t */ -- cgit v1.2.3