From af4bab56db4f87410c491c356954bbb65171f94d Mon Sep 17 00:00:00 2001 From: Jens Axboe Date: Sat, 1 Mar 2008 15:12:48 +0100 Subject: [PATCH] Fix bad inlining in mutex.h Signed-off-by: Jens Axboe --- mutex.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mutex.h b/mutex.h index 85f5f69c..0c862dba 100644 --- a/mutex.h +++ b/mutex.h @@ -13,7 +13,7 @@ struct fio_mutex { extern struct fio_mutex *fio_mutex_init(int); extern void fio_mutex_remove(struct fio_mutex *); -extern inline void fio_mutex_down(struct fio_mutex *); -extern inline void fio_mutex_up(struct fio_mutex *); +extern void fio_mutex_down(struct fio_mutex *); +extern void fio_mutex_up(struct fio_mutex *); #endif -- 2.25.1