Commit 2b98d1cc authored by cvs2svn's avatar cvs2svn
Browse files

This commit was manufactured by cvs2svn to create branch

'OpenSSL_0_9_6-stable'.
parents ce8ac3dc 1d4581c2
Loading
Loading
Loading
Loading

tools/c89.sh

0 → 100755
+15 −0
Original line number Diff line number Diff line
#!/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