about summary refs log tree commit diff
path: root/rt/tst-mqueue6.c
diff options
context:
space:
mode:
Diffstat (limited to 'rt/tst-mqueue6.c')
-rw-r--r--rt/tst-mqueue6.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/rt/tst-mqueue6.c b/rt/tst-mqueue6.c
index f4fdb02c6c..5c9ee69e1b 100644
--- a/rt/tst-mqueue6.c
+++ b/rt/tst-mqueue6.c
@@ -37,8 +37,8 @@
 #if _POSIX_THREADS
 # include <pthread.h>
 
-#define mqsend(q) (mqsend) (q, __LINE__)
-static inline int
+# define mqsend(q) (mqsend) (q, __LINE__)
+static int
 (mqsend) (mqd_t q, int line)
 {
   char c;
@@ -50,8 +50,8 @@ static inline int
   return 0;
 }
 
-#define mqrecv(q) (mqrecv) (q, __LINE__)
-static inline int
+# define mqrecv(q) (mqrecv) (q, __LINE__)
+static int
 (mqrecv) (mqd_t q, int line)
 {
   char c;
@@ -104,7 +104,7 @@ fct (union sigval s)
   fct_err |= mqsend (q);
 }
 
-#define TEST_FUNCTION do_test ()
+# define TEST_FUNCTION do_test ()
 static int
 do_test (void)
 {