Move MPTP ports to 16bit. Until now they were on 8bit.
[swifty.git] / src / kernel / test / test_getsockopt.c
1 /*
2  * Test getsockopt "syscall".
3  */
4
5 #include <stdio.h>
6 #include <stdlib.h>
7 #include <string.h>
8 #include <sys/types.h>
9 #include <unistd.h>
10 #include <sys/socket.h>
11 #include <netinet/in.h>
12 #include <errno.h>
13
14 #include "swift_types.h"
15
16 #include "debug.h"
17 #include "util.h"
18
19 #include "test_sw.h"
20 #include "test.h"
21
22 static void getsockopt_dummy(void);
23
24 void getsockopt_test_suite(void)
25 {
26         start_suite();
27         getsockopt_dummy();
28 }
29
30 static void getsockopt_dummy(void)
31 {
32         test(1 == 1);
33 }
34