From aba4025032c5897dd62f291cd01f47da8892c79b Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Mon, 11 Oct 1999 16:12:05 +0000 Subject: Removed targets and configurations that are no longer functional and not likely to become so. Comments on each configuration are below. + Force CPU386 - This BSP was developed as part of the initial port of RTEMS to the i386. This board has been unavailable for a long time now. + GO32 - This BSP and some CPU code supported djgpp v1.x. This version is now quite old. No one has stepped forward to update the code to v2.x which may be technically impossible anyway. More importantly, go32 has been superceded by the pc386 BSP. --- c/src/lib/libmisc/assoc/assocnamebad.c | 37 ---------------------------------- 1 file changed, 37 deletions(-) delete mode 100644 c/src/lib/libmisc/assoc/assocnamebad.c (limited to 'c/src/lib/libmisc/assoc/assocnamebad.c') diff --git a/c/src/lib/libmisc/assoc/assocnamebad.c b/c/src/lib/libmisc/assoc/assocnamebad.c deleted file mode 100644 index e336c39cc7..0000000000 --- a/c/src/lib/libmisc/assoc/assocnamebad.c +++ /dev/null @@ -1,37 +0,0 @@ -/* - * assoc.c - * rtems assoc routines - * - * $Id$ - */ - -#include -#include "assoc.h" - -#include /* sprintf */ -#include /* strcat, strcmp */ - -#define STREQ(a,b) (strcmp((a), (b)) == 0) -#define rtems_assoc_is_default(ap) ((ap)->name && STREQ(ap->name, RTEMS_ASSOC_DEFAULT_NAME)) - -/* - * what to return if a value is not found - * this is not reentrant, but it really shouldn't be invoked anyway - */ - -const char * -rtems_assoc_name_bad( - unsigned32 bad_value -) -{ -#ifdef RTEMS_DEBUG - static char bad_buffer[32]; - - sprintf(bad_buffer, "< %d [0x%x] >", bad_value, bad_value); -#else - static char bad_buffer[32] = ""; -#endif - return bad_buffer; -} - - -- cgit v1.2.3