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