Fix bad inlining in mutex.h
[fio.git] / mutex.h
diff --git a/mutex.h b/mutex.h
index 85f5f69cee0724069d60d72d9761e2cfc19efccd..0c862dba08998cc9dab9aa6f33849baa2a71f717 100644 (file)
--- 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