do not use PURE; it is not applicable for inline declarations
authorEnrico Scholz <enrico.scholz@informatik.tu-chemnitz.de>
Thu, 18 Mar 2004 06:06:07 +0000 (06:06 +0000)
committerEnrico Scholz <enrico.scholz@informatik.tu-chemnitz.de>
Thu, 18 Mar 2004 06:06:07 +0000 (06:06 +0000)
git-svn-id: http://svn.linux-vserver.org/svn/util-vserver/trunk@1307 94cd875c-1c1d-0410-91d2-eb244daf1a30

util-vserver/lib_internal/util-dotfile.h

index 41ed67d..fdf81a1 100644 (file)
@@ -22,7 +22,7 @@
 #include <stdbool.h>
 
 static inline UNUSED ALWAYSINLINE bool
-isDotfile(char const *d) PURE
+isDotfile(char const *d)
 {
   return d[0]=='.' && (d[1]=='\0' || (d[1]=='.' && d[2]=='\0'));
 }