summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2007-10-19 14:36:59 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2007-10-19 14:36:59 +0000
commit3f7786669ccc5d94c47e257f65a34ea44c4409ff (patch)
treeecaaa8d4e36de9a222c4891e2c7323f836c73993 /cpukit/libcsupport
parent2007-10-18 Glenn Humphrey <glenn.humphrey@OARcorp.com> (diff)
downloadrtems-3f7786669ccc5d94c47e257f65a34ea44c4409ff.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/libcsupport')
-rw-r--r--cpukit/libcsupport/src/assoc.c35
1 files changed, 0 insertions, 35 deletions
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;
-}