summaryrefslogtreecommitdiffstats
path: root/cpukit/httpd/ringq.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/httpd/ringq.c')
-rw-r--r--cpukit/httpd/ringq.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/cpukit/httpd/ringq.c b/cpukit/httpd/ringq.c
index cd483ae007..efb9c45a70 100644
--- a/cpukit/httpd/ringq.c
+++ b/cpukit/httpd/ringq.c
@@ -4,6 +4,8 @@
* Copyright (c) GoAhead Software Inc., 1995-2000. All Rights Reserved.
*
* See the file "license.txt" for usage and redistribution license requirements
+ *
+ * $Id$
*/
/******************************** Description *********************************/
@@ -47,7 +49,7 @@
/********************************* Includes ***********************************/
-#if UEMF
+#ifdef UEMF
#include "uemf.h"
#else
#include "basic/basicInternal.h"
@@ -245,7 +247,7 @@ void ringqAddNull(ringq_t *rq)
}
/******************************************************************************/
-#if UNICODE
+#ifdef UNICODE
/*
* Get a byte from the queue
*/
@@ -538,7 +540,7 @@ static int ringqGrow(ringq_t *rq)
ringqGetBlk(rq, newbuf, ringqLen(rq));
bfree(B_L, (char*) rq->buf);
-#if OLD
+#ifdef OLD
rq->endp = &newbuf[endp];
rq->servp = &newbuf[servp];
rq->endbuf = &newbuf[rq->buflen];