* \param obj the Object to compute the hash value from.
* \param hash Result is returned here.
*/
-static inline void hash_object(const struct osl_object *obj, HASH_TYPE *hash)
+_static_inline_ void hash_object(const struct osl_object *obj, HASH_TYPE *hash)
{
hash_function(obj->data, obj->size, hash);
}
*
* \sa struct osl_table:disk_storage_name_column.
*/
-static inline char *disk_storage_name_of_hash(const struct osl_table *t, HASH_TYPE *hash)
+_static_inline_ char *disk_storage_name_of_hash(const struct osl_table *t, HASH_TYPE *hash)
{
char asc[2 * HASH_SIZE + 2];
*
* \sa rename(2).
*/
-static inline int para_rename(const char *old_path, const char *new_path)
+_static_inline_ int para_rename(const char *old_path, const char *new_path)
{
if (rename(old_path, new_path) < 0)
return -ERRNO_TO_PARA_ERROR(errno);