]> mj.ucw.cz Git - libucw.git/blobdiff - lib/hashfunc.h
CONST attribute of functions noted in a better place
[libucw.git] / lib / hashfunc.h
index 1767d81bb5fd9eb7cd4903eb0156b1f218a861a9..d79e44ecfdaf695439a026496287ccab2e9ef76b 100644 (file)
@@ -30,7 +30,6 @@ uns hash_block(const byte *str, uns len) CONST;
 
 uns hash_string_nocase(const byte *str) CONST;
 
-static inline uns hash_int(uns x) CONST;
-static inline uns hash_int(uns x) { return 6442450967*x; }
+static inline uns CONST hash_int(uns x) { return 6442450967*x; }
 
 #endif