aboutsummaryrefslogtreecommitdiff
path: root/src/backend/port/snprintf.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/backend/port/snprintf.c')
-rw-r--r--src/backend/port/snprintf.c6
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);