diff options
author | stefanf <stefanf@FreeBSD.org> | 2005-08-13 08:09:22 +0000 |
---|---|---|
committer | stefanf <stefanf@FreeBSD.org> | 2005-08-13 08:09:22 +0000 |
commit | e0153329654e608534480d829bf8ec97c44e7661 (patch) | |
tree | a01be3c5d09455d499bb141388bed2c8d34788d8 | |
parent | 55d94ede25aaac4dd76768a4e7071d1d71e23185 (diff) | |
download | FreeBSD-src-e0153329654e608534480d829bf8ec97c44e7661.zip FreeBSD-src-e0153329654e608534480d829bf8ec97c44e7661.tar.gz |
Use prototypes in the generated builtins.{c,h} files.
-rwxr-xr-x | bin/sh/mkbuiltins | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/sh/mkbuiltins b/bin/sh/mkbuiltins index e05c8d0..144505c 100755 --- a/bin/sh/mkbuiltins +++ b/bin/sh/mkbuiltins @@ -58,9 +58,9 @@ cat <<\! ! awk '/^[^#]/ {if(('$havejobs' || $2 != "-j") && ('$havehist' || $2 != "-h")) \ print $0}' builtins.def | sed 's/-[hj]//' > $temp -awk '{ printf "int %s();\n", $1}' $temp +awk '{ printf "int %s(int, char **);\n", $1}' $temp echo ' -int (*const builtinfunc[])() = {' +int (*const builtinfunc[])(int, char **) = {' awk '/^[^#]/ { printf "\t%s,\n", $1}' $temp echo '}; @@ -87,6 +87,6 @@ struct builtincmd { int code; }; -extern int (*const builtinfunc[])(); +extern int (*const builtinfunc[])(int, char **); extern const struct builtincmd builtincmd[];' rm -f $temp |