]> err.no Git - varnish/commitdiff
Replace __inline with inline
authortfheen <tfheen@d4fa192b-c00b-0410-8231-f00ffab90ce4>
Wed, 25 Feb 2009 11:40:39 +0000 (11:40 +0000)
committertfheen <tfheen@d4fa192b-c00b-0410-8231-f00ffab90ce4>
Wed, 25 Feb 2009 11:40:39 +0000 (11:40 +0000)
C99 standardised "inline" and the Sun compiler doesn't like __inline,
so change to using inline consistently.

git-svn-id: svn+ssh://projects.linpro.no/svn/varnish/trunk@3827 d4fa192b-c00b-0410-8231-f00ffab90ce4

varnish-cache/lib/libvarnish/vsha256.c

index ec750fe5bb9a319b2ce8a86b70b0181a89779bfd..177e592b9e2322327b97e5bb228eda596d558624 100644 (file)
@@ -45,7 +45,7 @@
 #include "libvarnish.h"
 #include "vsha256.h"
 
-static __inline void
+static inline void
 mybe32enc(void *pp, uint32_t u)
 {
         unsigned char *p = (unsigned char *)pp;
@@ -56,7 +56,7 @@ mybe32enc(void *pp, uint32_t u)
         p[3] = u & 0xff;
 }
 
-static __inline void
+static inline void
 mybe64enc(void *pp, uint64_t u)
 {
        unsigned char *p = (unsigned char *)pp;
@@ -77,7 +77,7 @@ mybe64enc(void *pp, uint64_t u)
 
 #else /* BYTE_ORDER != BIG_ENDIAN or in doubt... */
 
-static __inline uint32_t
+static inline uint32_t
 mybe32dec(const void *pp)
 {
         unsigned char const *p = (unsigned char const *)pp;