2007-10-19 Joel Sherrill <joel.sherrill@OARcorp.com>

* libcsupport/src/assoc.c: Removed.  Accidentally included routine
	also in another file.  Mistake after splitting.
This commit is contained in:
Joel Sherrill
2007-10-19 14:37:12 +00:00
parent 814986ce3e
commit 9fe54b2469
2 changed files with 5 additions and 35 deletions

View File

@@ -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> 2007-10-15 Ralf Corsépius <ralf.corsepius@rtems.org>
* libnetworking/netdb.h, libnetworking/libc/gethostnamadr.c, * libnetworking/netdb.h, libnetworking/libc/gethostnamadr.c,

View File

@@ -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;
}