summaryrefslogtreecommitdiff
path: root/lib/libc/string
diff options
context:
space:
mode:
authorjtc <jtc@NetBSD.org>1994-11-18 15:38:32 +0000
committerjtc <jtc@NetBSD.org>1994-11-18 15:38:32 +0000
commit1bd8c27e8bc2575ebda92281608ca64e26938b3e (patch)
treeb329c9eb7a435ff80ad0ce332778f1d923444b93 /lib/libc/string
parent6dca60107bf1eba03d721309b277ccb069dd7af9 (diff)
Private versions of cat*() functions now have only one leading underscore.
Diffstat (limited to 'lib/libc/string')
-rw-r--r--lib/libc/string/__strerror.c8
-rw-r--r--lib/libc/string/__strsignal.c8
2 files changed, 8 insertions, 8 deletions
diff --git a/lib/libc/string/__strerror.c b/lib/libc/string/__strerror.c
index 30f02dbc4ee..1bcebeb3ce2 100644
--- a/lib/libc/string/__strerror.c
+++ b/lib/libc/string/__strerror.c
@@ -33,13 +33,13 @@
#if defined(LIBC_SCCS) && !defined(lint)
/*static char *sccsid = "from: @(#)strerror.c 5.6 (Berkeley) 5/4/91";*/
-static char *rcsid = "$Id: __strerror.c,v 1.3 1994/10/10 04:52:13 jtc Exp $";
+static char *rcsid = "$Id: __strerror.c,v 1.4 1994/11/18 15:38:32 jtc Exp $";
#endif /* LIBC_SCCS and not lint */
#ifdef NLS
-#define catclose __catclose
-#define catgets __catgets
-#define catopen __catopen
+#define catclose _catclose
+#define catgets _catgets
+#define catopen _catopen
#define sys_errlist __sys_errlist
#define sys_nerr __sys_nerr
#include <nl_types.h>
diff --git a/lib/libc/string/__strsignal.c b/lib/libc/string/__strsignal.c
index 57c7783f33e..44ecda6a83b 100644
--- a/lib/libc/string/__strsignal.c
+++ b/lib/libc/string/__strsignal.c
@@ -33,13 +33,13 @@
#if defined(LIBC_SCCS) && !defined(lint)
/*static char *sccsid = "from: @(#)strerror.c 5.6 (Berkeley) 5/4/91";*/
-static char *rcsid = "$Id: __strsignal.c,v 1.5 1994/10/19 03:09:00 cgd Exp $";
+static char *rcsid = "$Id: __strsignal.c,v 1.6 1994/11/18 15:38:34 jtc Exp $";
#endif /* LIBC_SCCS and not lint */
#ifdef NLS
-#define catclose __catclose
-#define catgets __catgets
-#define catopen __catopen
+#define catclose _catclose
+#define catgets _catgets
+#define catopen _catopen
#define sys_siglist __sys_siglist
#include <nl_types.h>
#endif