summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorRich Salz <rsalz@openssl.org>2016-03-12 11:04:10 -0500
committerRich Salz <rsalz@openssl.org>2016-03-18 09:40:25 -0400
commit71cdcfc6069ca8afe92cda636805a8c46f000862 (patch)
treeeb1f678af7e1112e7cdcf5e0e95e95cd4a999a69 /tools
parenta57bfe43e33f5e7e9dec034796c301fa0628a4b7 (diff)
downloadopenssl-new-71cdcfc6069ca8afe92cda636805a8c46f000862.tar.gz
Remove more unused things.
Moved doc/standards.txt to the web. Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'tools')
-rwxr-xr-xtools/c89.sh15
1 files changed, 0 insertions, 15 deletions
diff --git a/tools/c89.sh b/tools/c89.sh
deleted file mode 100755
index b25c9fda2d..0000000000
--- a/tools/c89.sh
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/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