raw: Add file declarations in source test files.
[swifty.git] / src / raw / test / test_sw_bind.c
1 /*
2  * Test sw_bind "syscall".
3  */
4
5 #include "test_sw.h"
6 #include "test.h"
7
8 static void bind_dummy(void);
9 static void bind_invalid_descriptor(void);
10 static void bind_descriptor_not_a_socket(void);
11 static void bind_invalid_ip_address(void);
12 static void bind_address_in_use(void);
13 static void bind_socket_already_bound(void);
14 static void bind_ok(void);
15
16 void bind_test_suite(void)
17 {
18         start_suite();
19         bind_dummy();
20 }
21
22 static void bind_dummy(void)
23 {
24         test(1 == 1);
25 }