ACCC1380 commited on
Commit
9b27b19
1 Parent(s): 9633b45

Upload etc/alternatives/c99 with huggingface_hub

Browse files
Files changed (1) hide show
  1. etc/alternatives/c99 +24 -0
etc/alternatives/c99 ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #! /bin/sh
2
+
3
+ # Call the appropriate C compiler with options to accept ANSI/ISO C
4
+ # The following options are the same (as of gcc-3.3):
5
+ # -std=c99
6
+ # -std=c9x
7
+ # -std=iso9899:1999
8
+ # -std=iso9899:199x
9
+
10
+ extra_flag=-std=c99
11
+
12
+ for i; do
13
+ case "$i" in
14
+ -std=c9[9x]|-std=iso9899:199[9x])
15
+ extra_flag=
16
+ ;;
17
+ -std=*|-ansi)
18
+ echo >&2 "`basename $0` called with non ISO C99 option $i"
19
+ exit 1
20
+ ;;
21
+ esac
22
+ done
23
+
24
+ exec gcc $extra_flag ${1+"$@"}