From 072b0afc870a7f2e7eaed7cf605e50b02209fe0a Mon Sep 17 00:00:00 2001 From: jtc Date: Thu, 6 Oct 1994 05:41:45 +0000 Subject: [PATCH] Renamed catopen(), catgets(), and catclose() to __catopen(), __catgets(), and __catclose(). Made MCGetSet() and MCGetMsg() static. --- lib/libc/nls/msgcat.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/lib/libc/nls/msgcat.c b/lib/libc/nls/msgcat.c index 6ba989ba1ecd..067f0ff891c6 100644 --- a/lib/libc/nls/msgcat.c +++ b/lib/libc/nls/msgcat.c @@ -31,7 +31,7 @@ up-to-date. Many thanks. ******************************************************************/ #if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$Id: msgcat.c,v 1.5 1994/10/05 17:33:50 jtc Exp $"; +static char *rcsid = "$Id: msgcat.c,v 1.6 1994/10/06 05:41:45 jtc Exp $"; #endif /* LIBC_SCCS and not lint */ /* Edit History @@ -79,7 +79,7 @@ static char *rcsid = "$Id: msgcat.c,v 1.5 1994/10/05 17:33:50 jtc Exp $"; static nl_catd loadCat(); static nl_catd loadSet(); -nl_catd catopen( name, type) +nl_catd __catopen( name, type) char *name; int type; { @@ -161,7 +161,7 @@ int type; * >=9 >=10 >=11 * */ -MCSetT *MCGetSet( cat, setId) +static MCSetT *MCGetSet( cat, setId) MCCatT *cat; int setId; { @@ -199,7 +199,7 @@ int setId; } -MCMsgT *MCGetMsg( set, msgId) +static MCMsgT *MCGetMsg( set, msgId) MCSetT *set; int msgId; { @@ -235,7 +235,7 @@ int msgId; return(msg); } -char *catgets( catd, setId, msgId, dflt) +char *__catgets( catd, setId, msgId, dflt) nl_catd catd; int setId; int msgId; @@ -252,7 +252,7 @@ char *dflt; } -void catclose( catd) +void __catclose( catd) nl_catd catd; { MCCatT *cat = (MCCatT *) catd;