diff options
author | peter <peter@FreeBSD.org> | 1996-10-01 04:59:13 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1996-10-01 04:59:13 +0000 |
commit | 943436c3c899fd0c715c0cd1cd5a282548597fe9 (patch) | |
tree | 744e721ceca57429fe2245ae533a449bab7ffb5c /bin | |
parent | dd85f245b6e7876ed97bebc7cadc0447fc827f3c (diff) | |
download | FreeBSD-src-943436c3c899fd0c715c0cd1cd5a282548597fe9.zip FreeBSD-src-943436c3c899fd0c715c0cd1cd5a282548597fe9.tar.gz |
re-activate the printf builtin now that src/usr.bin/printf.c has been
tweaked to work as a builtin better (ie: calls the real printf formatting
code, not sh's cut-down out1fmt() function)
Diffstat (limited to 'bin')
-rw-r--r-- | bin/sh/builtins.def | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/sh/builtins.def b/bin/sh/builtins.def index 8a62429..c9db726 100644 --- a/bin/sh/builtins.def +++ b/bin/sh/builtins.def @@ -35,7 +35,7 @@ # SUCH DAMAGE. # # @(#)builtins.def 8.4 (Berkeley) 5/4/95 -# $Id$ +# $Id: builtins.def,v 1.2 1996/09/01 10:19:44 peter Exp $ # # This file lists all the builtin commands. The first column is the name @@ -73,7 +73,7 @@ jobscmd jobs #linecmd line localcmd local #nlechocmd nlecho -#printfcmd printf +printfcmd printf pwdcmd pwd readcmd read returncmd return |