summaryrefslogtreecommitdiffstats
path: root/testsuite
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2019-03-28 13:37:37 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2019-03-29 07:06:01 +0100
commit399be8605c799811a9beb9c0e26cc65ed5989b8d (patch)
treeb3bea1a08903678f519673aac40a58fb306ec536 /testsuite
parentBPF(9): Disable legacy timestamp support (diff)
downloadrtems-libbsd-399be8605c799811a9beb9c0e26cc65ed5989b8d.tar.bz2
openssl02: Fix includes
Diffstat (limited to 'testsuite')
-rw-r--r--testsuite/openssl02/test_main.c10
1 files changed, 3 insertions, 7 deletions
diff --git a/testsuite/openssl02/test_main.c b/testsuite/openssl02/test_main.c
index ccd48dc9..94a735b0 100644
--- a/testsuite/openssl02/test_main.c
+++ b/testsuite/openssl02/test_main.c
@@ -30,21 +30,17 @@
*/
#include <sys/param.h>
-
+#include <sys/stat.h>
#include <assert.h>
#include <errno.h>
+#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#include <sysexits.h>
+#include <unistd.h>
#include <machine/rtems-bsd-commands.h>
-#include <rtems/libcsupport.h>
-#include <rtems/bsd/modules.h>
-
-#include <sys/stat.h>
-#include <fcntl.h>
-
#define TEST_NAME "LIBBSD OPENSSL 2"
#define ARGC(x) RTEMS_BSD_ARGC(x)