0a25e2f3fb6112216f31316080d1884493c9a672
[swifty.git] / src / raw / test / test_sw_recvmsg.c
1 /*
2  * Test sw_recvmsg "syscall".
3  */
4
5 #include "test_sw.h"
6 #include "test.h"
7
8 static void recvmsg_dummy(void);
9
10 void recvmsg_test_suite(void)
11 {
12         start_suite();
13         recvmsg_dummy();
14 }
15
16 static void recvmsg_dummy(void) 
17 {
18         test(1 == 1);
19 }
20