diff options
| author | hubertf <hubertf@NetBSD.org> | 2008-09-24 21:26:59 +0000 |
|---|---|---|
| committer | hubertf <hubertf@NetBSD.org> | 2008-09-24 21:26:59 +0000 |
| commit | b64bc91804b1839ad8addccd67d2a7aed116c8e1 (patch) | |
| tree | 12850cf1e5b2c67c9f9118d55e4d65dda9798ae9 /gnu/usr.bin | |
| parent | 90b621c7d8d6dd33702218446e4efab7afeb5c37 (diff) | |
Simplify argument passing, recommended by christos@
Diffstat (limited to 'gnu/usr.bin')
| -rw-r--r-- | gnu/usr.bin/c89/c89.sh | 2 | ||||
| -rw-r--r-- | gnu/usr.bin/c99/c99.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/gnu/usr.bin/c89/c89.sh b/gnu/usr.bin/c89/c89.sh index 617e300066c..52d6d45431b 100644 --- a/gnu/usr.bin/c89/c89.sh +++ b/gnu/usr.bin/c89/c89.sh @@ -1,2 +1,2 @@ #!/bin/sh -exec /usr/bin/cc -std=c89 ${1+"$@"} +exec /usr/bin/cc -std=c89 "$@" diff --git a/gnu/usr.bin/c99/c99.sh b/gnu/usr.bin/c99/c99.sh index 17e8bc0275f..15cab47c748 100644 --- a/gnu/usr.bin/c99/c99.sh +++ b/gnu/usr.bin/c99/c99.sh @@ -1,2 +1,2 @@ #!/bin/sh -exec /usr/bin/cc -std=c99 ${1+"$@"} +exec /usr/bin/cc -std=c99 "$@" |
