Commit 02a473ee authored by cvs2svn's avatar cvs2svn
Browse files

This commit was manufactured by cvs2svn to create tag 'OpenSSL-engine-

0_9_6c'.
parents 85939d5d 5ec27eac
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