Sign in
cobalt
/
cobalt
/
2a8c847d785c1602f60915c8e0112e0aec6a15a5
/
.
/
src
/
third_party
/
openssl
/
openssl
/
tools
/
c89.sh
blob: b25c9fda2df1ea7699559ce4b9db6cbd53034540 [
file
] [
log
] [
blame
]
#!/bin/sh -k
#
# Re-order arguments so that -L comes first
#
opts
=
""
lopts
=
""
for
arg
in
$
*
;
do
case
$arg
in
-
L
*)
lopts
=
"$lopts $arg"
;;
*)
opts
=
"$opts $arg"
;;
esac
done
c89 $lopts $opts