summaryrefslogtreecommitdiffstats
path: root/cpukit/pppd/example/init.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/pppd/example/init.c')
-rw-r--r--cpukit/pppd/example/init.c24
1 files changed, 0 insertions, 24 deletions
diff --git a/cpukit/pppd/example/init.c b/cpukit/pppd/example/init.c
deleted file mode 100644
index f35d195bf2..0000000000
--- a/cpukit/pppd/example/init.c
+++ /dev/null
@@ -1,24 +0,0 @@
-
-#include <stdio.h>
-#include <stdlib.h>
-#include <string.h>
-#include <rtems/rtems_bsdnet.h>
-#include <rtemspppd.h>
-
-#define CONFIGURE_INIT
-#include "system.h"
-#include "netconfig.h"
-
-
-extern int pppdapp_initialize(void);
-
-
-rtems_task Init(rtems_task_argument argument)
-{
- /* initialize network */
- rtems_bsdnet_initialize_network();
- rtems_pppd_initialize();
- pppdapp_initialize();
-
- rtems_task_delete(RTEMS_SELF);
-}