From 1d4581c2dd402b327b69dd73bc069df39113b53f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bodo=20M=C3=B6ller?= Date: Thu, 22 Nov 2001 11:09:42 +0000 Subject: OS/390 support Submitted by: Richard Shapiro --- tools/c89.sh | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100755 tools/c89.sh (limited to 'tools') diff --git a/tools/c89.sh b/tools/c89.sh new file mode 100755 index 0000000000..b25c9fda2d --- /dev/null +++ b/tools/c89.sh @@ -0,0 +1,15 @@ +#!/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 -- cgit v1.2.3