From 8c3e8a8a0e432b709ad45b452612f744bacf1514 Mon Sep 17 00:00:00 2001 From: "Marc G. Fournier" Date: Sun, 21 Feb 1999 03:49:55 +0000 Subject: From: Tatsuo Ishii Ok. I made patches replacing all of "#if FALSE" or "#if 0" to "#ifdef NOT_USED" for current. I have tested these patches in that the postgres binaries are identical. --- src/backend/port/snprintf.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/backend/port/snprintf.c') diff --git a/src/backend/port/snprintf.c b/src/backend/port/snprintf.c index 1a9f87a7cc9..705989b6cae 100644 --- a/src/backend/port/snprintf.c +++ b/src/backend/port/snprintf.c @@ -31,7 +31,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. */ -#if 0 +#ifdef NOT_USED #include "sendmail.h" #include "pathnames.h" #endif @@ -80,7 +80,7 @@ typedef unsigned long ulong_long; * causing nast effects. **************************************************************/ -/*static char _id[] = "$Id: snprintf.c,v 1.20 1999/02/06 21:51:03 tgl Exp $";*/ +/*static char _id[] = "$Id: snprintf.c,v 1.21 1999/02/21 03:49:08 scrappy Exp $";*/ static char *end; static int SnprfOverflow; @@ -464,7 +464,7 @@ dostr(char *str, int cut) static void dopr_outch(int c) { -#if 0 +#ifdef NOT_USED if (iscntrl(c) && c != '\n' && c != '\t') { c = '@' + (c & 0x1F); -- cgit v1.2.3