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