repo.or.cz
/
dragonfly.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Import OpenSSL-0.9.8i.
[dragonfly.git]
/
crypto
/
openssl-0.9.7d
/
tools
/
c89.sh
blob
b25c9fda2df1ea7699559ce4b9db6cbd53034540
1
#!/bin/sh -k
2
#
3
# Re-order arguments so that -L comes first
4
#
5
opts
=
""
6
lopts
=
""
7
8
for
arg
in
$
* ;
do
9
case
$arg
in
10
-L
*)
lopts
=
"
$lopts
$arg
"
;;
11
*)
opts
=
"
$opts
$arg
"
;;
12
esac
13
done
14
15
c89
$lopts $opts