From 4230aad8a87c3f2666744c0a575a2d77a757e356 Mon Sep 17 00:00:00 2001 From: Marcus Overhagen Date: Sun, 21 Aug 2005 01:39:39 +0000 Subject: [PATCH] fixed DEBUG build git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@14020 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/libs/termcap/tparam.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/libs/termcap/tparam.c b/src/libs/termcap/tparam.c index 5a9809aab4..6eb6180116 100644 --- a/src/libs/termcap/tparam.c +++ b/src/libs/termcap/tparam.c @@ -43,7 +43,7 @@ char *realloc (); #ifndef NULL #define NULL (char *) 0 #endif - + #ifndef emacs static void memory_out () @@ -75,7 +75,7 @@ xrealloc (ptr, size) return tem; } #endif /* not emacs */ - + /* Assuming STRING is the value of a termcap string entry containing `%' constructs to expand parameters, merge in parameter values and store result in block OUTSTRING points to. @@ -312,8 +312,8 @@ tparam1 (string, outstring, len, up, left, argp) strcat (op, left); return outstring; } - -#ifdef DEBUG + +#if 0 main (argc, argv) int argc; @@ -329,4 +329,4 @@ main (argc, argv) return 0; } -#endif /* DEBUG */ +#endif