From b6036920b5141f780158b01da548dcd4db2e9c19 Mon Sep 17 00:00:00 2001
From: Fons Rademakers <Fons.Rademakers@cern.ch>
Date: Fri, 19 Jul 2002 08:26:50 +0000
Subject: [PATCH] static strip() is not used so hide it with #if 0 #endif to
 avoid gcc 3.1 warning about unused static function.

git-svn-id: http://root.cern.ch/svn/root/trunk@4986 27541ba8-7e3a-0410-8455-c3a389f83636
---
 clib/src/Getline.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/clib/src/Getline.c b/clib/src/Getline.c
index f363a91b992..59a1e6df524 100644
--- a/clib/src/Getline.c
+++ b/clib/src/Getline.c
@@ -1,4 +1,4 @@
-/* @(#)root/clib:$Name:  $:$Id: Getline.c,v 1.8 2001/06/22 16:10:16 rdm Exp $ */
+/* @(#)root/clib:$Name:  $:$Id: Getline.c,v 1.9 2002/04/04 10:11:13 rdm Exp $ */
 /* Author: */
 
 /*
@@ -1619,6 +1619,7 @@ search_forw(int new_search)
     }
 }
 
+#if 0
 /***********************************************************************
  *                                                                     *
  *   Strip blanks from both sides of a string. Space for the new       *
@@ -1655,6 +1656,7 @@ static char *strip(char *s)
 
    return r;
 }
+#endif
 
 /*****************************************************************************/
 /* Extra routine provided by Christian Lacunza <lacunza@cdfsg5.lbl.gov>      */
-- 
GitLab