diff options
author | Marc G. Fournier <scrappy@hub.org> | 1999-02-21 03:49:55 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1999-02-21 03:49:55 +0000 |
commit | 8c3e8a8a0e432b709ad45b452612f744bacf1514 (patch) | |
tree | f6dd8c40d09730dd5a44cd1ac19d4c50b002b47c /src/backend/port/snprintf.c | |
parent | 1efa3f42280fce080e47fc4491a809240cbe464a (diff) | |
download | postgresql-8c3e8a8a0e432b709ad45b452612f744bacf1514.tar.gz postgresql-8c3e8a8a0e432b709ad45b452612f744bacf1514.zip |
From: Tatsuo Ishii <t-ishii@sra.co.jp>
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.
Diffstat (limited to 'src/backend/port/snprintf.c')
-rw-r--r-- | src/backend/port/snprintf.c | 6 |
1 files changed, 3 insertions, 3 deletions
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); |