From f24fea8aed6fb10665d3b4d006e46588fcd0360c Mon Sep 17 00:00:00 2001 From: John Kohl Date: Mon, 1 Aug 1988 08:09:44 +0000 Subject: change to use reserved function names --- lib/ZMakeAscii.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lib/ZMakeAscii.c') diff --git a/lib/ZMakeAscii.c b/lib/ZMakeAscii.c index b6c4a12..5c219be 100644 --- a/lib/ZMakeAscii.c +++ b/lib/ZMakeAscii.c @@ -42,8 +42,8 @@ Code_t ZMakeAscii(ptr, len, field, num) } if (len < 3) return (ZERR_FIELDLEN); - *ptr++ = cnvt_itox((int) (field[i] >> 4)); - *ptr++ = cnvt_itox((int) (field[i] & 0xf)); + *ptr++ = Z_cnvt_itox((int) (field[i] >> 4)); + *ptr++ = Z_cnvt_itox((int) (field[i] & 0xf)); len -= 2; } @@ -51,7 +51,7 @@ Code_t ZMakeAscii(ptr, len, field, num) return (ZERR_NONE); } -cnvt_itox(i) +Z_cnvt_itox(i) int i; { i += '0'; -- cgit v1.2.3