27cabdf2298691a194fbb7a16e5deef4872404c5
[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
10 void bind_test_suite(void)
11 {
12         start_suite();
13         bind_dummy();
14 }
15
16 static void bind_dummy(void)
17 {
18         test(1 == 1);
19 }