summaryrefslogtreecommitdiffstats
path: root/cpukit/telnetd/telnetd.c
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2018-09-26 09:18:12 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2018-10-01 12:28:11 +0200
commit2da93bcb735acbd07bdb1529091a484b44c94c48 (patch)
tree93810c45accc81c404f2271c0c395370690dd73d /cpukit/telnetd/telnetd.c
parenttelnetd: Remove dead code (diff)
downloadrtems-2da93bcb735acbd07bdb1529091a484b44c94c48.tar.bz2
telnetd: Regroup includes
Diffstat (limited to '')
-rw-r--r--cpukit/telnetd/telnetd.c12
1 files changed, 5 insertions, 7 deletions
diff --git a/cpukit/telnetd/telnetd.c b/cpukit/telnetd/telnetd.c
index 86ed8b4090..1b0631e3a6 100644
--- a/cpukit/telnetd/telnetd.c
+++ b/cpukit/telnetd/telnetd.c
@@ -40,12 +40,6 @@
#include "config.h"
#endif
-#include <rtems.h>
-#include <rtems/error.h>
-#include <rtems/pty.h>
-#include <rtems/shell.h>
-#include <rtems/telnetd.h>
-#include <rtems/bspIo.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
@@ -55,8 +49,12 @@
#include <string.h>
#include <syslog.h>
-#include <rtems/userenv.h>
+#include <rtems.h>
#include <rtems/error.h>
+#include <rtems/pty.h>
+#include <rtems/shell.h>
+#include <rtems/telnetd.h>
+#include <rtems/userenv.h>
#ifdef RTEMS_NETWORKING
#include <rtems/rtems_bsdnet.h>