summaryrefslogtreecommitdiff
path: root/usr.bin/msgc/msg_sys.def
diff options
context:
space:
mode:
authorcgd <cgd@NetBSD.org>1999-07-04 22:55:48 +0000
committercgd <cgd@NetBSD.org>1999-07-04 22:55:48 +0000
commit4515ccfe3e1009117a2665d4fbf42e190e8a7954 (patch)
treef056d1e9d182947ef94ee9aa21f2641ce19f101f /usr.bin/msgc/msg_sys.def
parentb62c0ee8ad1681a6d0e08bd516a2d152d288ba74 (diff)
nuke msg_printf() and msg_printf_add().
Diffstat (limited to 'usr.bin/msgc/msg_sys.def')
-rw-r--r--usr.bin/msgc/msg_sys.def26
1 files changed, 1 insertions, 25 deletions
diff --git a/usr.bin/msgc/msg_sys.def b/usr.bin/msgc/msg_sys.def
index 2b31ecb671e..25a68a10b31 100644
--- a/usr.bin/msgc/msg_sys.def
+++ b/usr.bin/msgc/msg_sys.def
@@ -1,4 +1,4 @@
-/* $NetBSD: msg_sys.def,v 1.16 1999/07/04 21:30:14 cgd Exp $ */
+/* $NetBSD: msg_sys.def,v 1.17 1999/07/04 22:55:48 cgd Exp $ */
/*
* Copyright 1997 Piermont Information Systems Inc.
@@ -245,30 +245,6 @@ void msg_display_add(msg msg_no, ...)
va_end (ap);
}
-int msg_printf (const char *fmt, ...)
-{
- va_list ap;
- int res;
-
- msg_clear();
-
- va_start (ap, fmt);
- res = _msg_vprintf(1, fmt, ap);
- va_end (ap);
- return res;
-}
-
-int msg_printf_add (const char *fmt, ...)
-{
- va_list ap;
- int res;
-
- va_start (ap, fmt);
- res = _msg_vprintf(1, fmt, ap);
- va_end (ap);
- return res;
-}
-
static void
_msg_vprompt(const char *msg, int do_echo, const char *def, char *val,