# Sourced from https://raw.githubusercontent.com/OpenMandrivaAssociation/vde2/master/vd2-2.3.2-clang.patch --- a/src/vde_switch/fstp.c 2014-10-29 22:54:18.659988435 +0000 +++ b/src/vde_switch/fstp.c 2014-10-29 22:54:44.912986501 +0000 @@ -30,14 +30,14 @@ #ifdef FSTP #include /*********************** sending macro used by FSTP & Core ******************/ -void inline ltonstring(unsigned long l,unsigned char *s) { +void ltonstring(unsigned long l,unsigned char *s) { s[3]=l; l>>=8; s[2]=l; l>>=8; s[1]=l; l>>=8; s[0]=l; } -unsigned long inline nstringtol(unsigned char *s) { +unsigned long nstringtol(unsigned char *s) { return (s[0]<<24)+(s[1]<<16)+(s[2]<<8)+s[3]; }