summaryrefslogtreecommitdiff
path: root/bin/csh/init.c
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2003-06-23 16:42:16 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2003-06-23 16:42:16 +0000
commit73f3711db475ec25769e9ed08bf073d5db15e917 (patch)
treeb243f4e647bc4465d8b83c3ebf60933c97538e8d /bin/csh/init.c
parent49ef61b214d2c1c164fa8ede893b9e0e73405f71 (diff)
kill printf builtin. no reason to be a builtin, but furthermore, the
handling of format strings is quite non-compliant.
Diffstat (limited to 'bin/csh/init.c')
-rw-r--r--bin/csh/init.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/bin/csh/init.c b/bin/csh/init.c
index 77a0fdb0ec5..1384c6fee78 100644
--- a/bin/csh/init.c
+++ b/bin/csh/init.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: init.c,v 1.5 2003/06/02 23:32:07 millert Exp $ */
+/* $OpenBSD: init.c,v 1.6 2003/06/23 16:42:15 deraadt Exp $ */
/* $NetBSD: init.c,v 1.6 1995/03/21 09:03:05 cgd Exp $ */
/*-
@@ -34,7 +34,7 @@
#if 0
static char sccsid[] = "@(#)init.c 8.1 (Berkeley) 5/31/93";
#else
-static char rcsid[] = "$OpenBSD: init.c,v 1.5 2003/06/02 23:32:07 millert Exp $";
+static char rcsid[] = "$OpenBSD: init.c,v 1.6 2003/06/23 16:42:15 deraadt Exp $";
#endif
#endif /* not lint */
@@ -85,7 +85,6 @@ struct biltins bfunc[] =
{ "notify", donotify, 0, INF },
{ "onintr", doonintr, 0, 2 },
{ "popd", dopopd, 0, INF },
- { "printf", doprintf, 1, INF },
{ "pushd", dopushd, 0, INF },
{ "rehash", dohash, 0, 0 },
{ "repeat", dorepeat, 2, INF },