aboutsummaryrefslogtreecommitdiff
path: root/repos/core/gcc/c89
diff options
context:
space:
mode:
Diffstat (limited to 'repos/core/gcc/c89')
-rw-r--r--repos/core/gcc/c8910
1 files changed, 0 insertions, 10 deletions
diff --git a/repos/core/gcc/c89 b/repos/core/gcc/c89
deleted file mode 100644
index 35486ea8..00000000
--- a/repos/core/gcc/c89
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/bin/sh
-fl="-std=c89"
-for opt; do
- case "$opt" in
- -ansi|-std=c89|-std=iso9899:1990) fl="";;
- -std=*) echo "`basename $0` called with non ANSI/ISO C option $opt" >&2
- exit 1;;
- esac
-done
-exec gcc $fl ${1+"$@"}