2204d34ff2850764e0933ee59e135c64790d8d4e
[swifty.git] / src / raw / test / test_sw_sendto.c
1 /*
2  * Test sw_sendto "syscall".
3  */
4
5 #include "test_sw.h"
6 #include "test.h"
7
8 static void sendto_dummy(void);
9
10 void sendto_test_suite(void)
11 {
12         start_suite();
13         sendto_dummy();
14 }
15
16 static void sendto_dummy(void)
17 {
18         test(1 == 1);
19 }