(linenum→info "unix/slp.c:2238")

openssl/0.9.8g/tools/c89.sh

    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
Syntax (Markdown)