fnv_hash.h: Disable unused 64-bit functions

This commit is contained in:
Sebastian Huber 2016-04-18 14:46:23 +02:00
parent 982f72fb46
commit a438f528fc

View File

@ -44,6 +44,7 @@ fnv_32_str(const char *str, Fnv32_t hval)
return hval;
}
#ifndef __rtems__
static __inline Fnv64_t
fnv_64_buf(const void *buf, size_t len, Fnv64_t hval)
{
@ -68,4 +69,5 @@ fnv_64_str(const char *str, Fnv64_t hval)
}
return hval;
}
#endif /* __rtems__ */
#endif /* _SYS_FNV_HASH_H_ */