diff options
author | Rich Salz <rsalz@openssl.org> | 2016-03-12 17:04:10 +0100 |
---|---|---|
committer | Rich Salz <rsalz@openssl.org> | 2016-03-18 14:40:25 +0100 |
commit | 71cdcfc6069ca8afe92cda636805a8c46f000862 (patch) | |
tree | eb1f678af7e1112e7cdcf5e0e95e95cd4a999a69 /tools | |
parent | Resolved unresolved symbols with no-hw (diff) | |
download | openssl-71cdcfc6069ca8afe92cda636805a8c46f000862.tar.xz openssl-71cdcfc6069ca8afe92cda636805a8c46f000862.zip |
Remove more unused things.
Moved doc/standards.txt to the web.
Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/c89.sh | 15 |
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 |