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