summaryrefslogtreecommitdiffstats
path: root/cpukit
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2007-10-19 14:37:12 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2007-10-19 14:37:12 +0000
commit9fe54b246968bfe85469502faad75450e4f5cfd3 (patch)
treee6702b4ac183ac1d85f802b08f391f03fbff07ce /cpukit
parent2007-10-14 Eric Norum <norume@aps.anl.gov> (diff)
downloadrtems-9fe54b246968bfe85469502faad75450e4f5cfd3.tar.bz2
2007-10-19 Joel Sherrill <joel.sherrill@OARcorp.com>
* libcsupport/src/assoc.c: Removed. Accidentally included routine also in another file. Mistake after splitting.
Diffstat (limited to 'cpukit')
-rw-r--r--cpukit/ChangeLog5
-rw-r--r--cpukit/libcsupport/src/assoc.c35
2 files changed, 5 insertions, 35 deletions
diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog
index eea2dcac39..53ba624aa1 100644
--- a/cpukit/ChangeLog
+++ b/cpukit/ChangeLog
@@ -1,3 +1,8 @@
+2007-10-19 Joel Sherrill <joel.sherrill@OARcorp.com>
+
+ * libcsupport/src/assoc.c: Removed. Accidentally included routine
+ also in another file. Mistake after splitting.
+
2007-10-15 Ralf Corsépius <ralf.corsepius@rtems.org>
* libnetworking/netdb.h, libnetworking/libc/gethostnamadr.c,
diff --git a/cpukit/libcsupport/src/assoc.c b/cpukit/libcsupport/src/assoc.c
deleted file mode 100644
index 457f57e434..0000000000
--- a/cpukit/libcsupport/src/assoc.c
+++ /dev/null
@@ -1,35 +0,0 @@
-/*
- * assoc.c
- * rtems assoc routines
- *
- * $Id$
- */
-
-#if HAVE_CONFIG_H
-#include "config.h"
-#endif
-
-#define INSIDE_ASSOC
-
-#include <rtems.h>
-#include <rtems/assoc.h>
-
-#include <string.h> /* strcat, strcmp */
-
-
-const rtems_assoc_t *rtems_assoc_ptr_by_name(
- const rtems_assoc_t *ap,
- const char *name
-)
-{
- const rtems_assoc_t *default_ap = 0;
-
- if (rtems_assoc_is_default(ap))
- default_ap = ap++;
-
- for ( ; ap->name; ap++)
- if (strcmp(ap->name, name) == 0)
- return ap;
-
- return default_ap;
-}