summaryrefslogtreecommitdiffstats
path: root/cpukit/httpd/misc.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/httpd/misc.c')
-rw-r--r--cpukit/httpd/misc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpukit/httpd/misc.c b/cpukit/httpd/misc.c
index 5fbe63329c..88b65a2008 100644
--- a/cpukit/httpd/misc.c
+++ b/cpukit/httpd/misc.c
@@ -59,10 +59,10 @@ static void put_ulong(strbuf_t *buf, unsigned long int value, int base,
/************************************ Code ************************************/
/*
* "basename" returns a pointer to the last component of a pathname
- * LINUX and LynxOS have their own basename function
+ * LINUX, RTEMS, and LynxOS have their own basename function
*/
-#if ! LINUX & ! LYNX
+#if ! LINUX & ! __rtems__ & ! LYNX
char_t *basename(char_t* name)
{
char_t *cp;
@@ -83,7 +83,7 @@ char_t *basename(char_t* name)
return ++cp;
}
}
-#endif /* ! LINUX & ! LYNX */
+#endif /* ! LINUX && ! __rtems__ && ! LYNX */
/******************************************************************************/
/*