summaryrefslogtreecommitdiffstats
path: root/dnstest
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2009-05-12 19:59:54 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2009-05-12 19:59:54 +0000
commit0417fe38d63d1f663a72e9afc13a68126d9e4576 (patch)
tree0a5b0ea86207649ad3c5e1f3bd3f2544727c1480 /dnstest
parent2009-05-12 Joel Sherrill <joel.sherrill@OARcorp.com> (diff)
downloadnetwork-demos-0417fe38d63d1f663a72e9afc13a68126d9e4576.tar.bz2
2009-05-12 Joel Sherrill <joel.sherrill@OARcorp.com>
* init.c: Now build with libbsdport.
Diffstat (limited to 'dnstest')
-rw-r--r--dnstest/ChangeLog4
-rw-r--r--dnstest/init.c36
2 files changed, 22 insertions, 18 deletions
diff --git a/dnstest/ChangeLog b/dnstest/ChangeLog
index 1546b3e..e67c497 100644
--- a/dnstest/ChangeLog
+++ b/dnstest/ChangeLog
@@ -1,3 +1,7 @@
+2009-05-12 Joel Sherrill <joel.sherrill@OARcorp.com>
+
+ * init.c: Now build with libbsdport.
+
2007-09-25 Joel Sherrill <joel.sherrill@oarcorp.com>
* .cvsignore: New file.
diff --git a/dnstest/init.c b/dnstest/init.c
index 5f595ec..d60ca46 100644
--- a/dnstest/init.c
+++ b/dnstest/init.c
@@ -17,6 +17,24 @@
#include <bsp.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <rtems/rtems_bsdnet.h>
+#include "../networkconfig.h"
+
+/*
+ * RTEMS Startup Task
+ */
+rtems_task
+Init (rtems_task_argument ignored)
+{
+ void testDNS(void);
+
+ rtems_bsdnet_initialize_network ();
+ testDNS ();
+ exit (0);
+}
+
#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
#define CONFIGURE_APPLICATION_NEEDS_CLOCK_DRIVER
#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
@@ -41,21 +59,3 @@ rtems_task Init (rtems_task_argument argument);
#include <rtems/confdefs.h>
-#include <stdio.h>
-#include <stdlib.h>
-#include <rtems/rtems_bsdnet.h>
-#include "../networkconfig.h"
-
-/*
- * RTEMS Startup Task
- */
-rtems_task
-Init (rtems_task_argument ignored)
-{
- void testDNS(void);
-
- rtems_bsdnet_initialize_network ();
- testDNS ();
- exit (0);
-}
-