]> git.sur5r.net Git - cc65/commit
The -A and --ansi switches are gone, together with the __STRICT_ANSI__
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Mon, 21 Jun 2004 22:22:11 +0000 (22:22 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Mon, 21 Jun 2004 22:22:11 +0000 (22:22 +0000)
commit13a2927e17258051596d7e2e98f072cfce484707
treea22a4860328f66e1c8d0dcd370ee1f0fd028b261
parentd01687fd828d286a96a5164ee8dead6b5d3e0f14
The -A and --ansi switches are gone, together with the __STRICT_ANSI__
predefined macro. Instead there is now a command line option --standard that
allows to set c89, c99 or cc65 as language standard. The compiler defines a
macro __CC65_STD__ that is one of __CC65_STD_C89__, __CC65_STD_C99__ or
__CC65_STD_CC65__ depending on the command line option. Default is cc65 (all
extensions) as before.

git-svn-id: svn://svn.cc65.org/cc65/trunk@3133 b7a2c559-68d2-44c3-8de9-860c34a00d81
17 files changed:
doc/cc65.sgml
doc/cl65.sgml
include/ctype.h
include/stdio.h
include/stdlib.h
include/string.h
src/cc65/compile.c
src/cc65/declare.c
src/cc65/global.h
src/cc65/main.c
src/cc65/make/gcc.mak
src/cc65/make/watcom.mak
src/cc65/preproc.c
src/cc65/scanner.c
src/cc65/standard.c [new file with mode: 0644]
src/cc65/standard.h [new file with mode: 0644]
src/cl65/main.c