raw: Add file declarations in source test files.
[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 static void recvmsg_invalid_descriptor(void);
10 static void recvmsg_descriptor_is_not_a_socket(void);
11 static void recvmsg_socket_is_not_bound(void);
12 static void recvmsg_after_sendto_ok(void);
13 static void recvmsg_after_sendmsg_ok(void);
14
15 void recvmsg_test_suite(void)
16 {
17         start_suite();
18         recvmsg_dummy();
19 }
20
21 static void recvmsg_dummy(void) 
22 {
23         test(1 == 1);
24 }
25