http://gcc.gnu.org/bugzilla/show_bug.cgi?id=60498
Csaba Ráduly <csaba_22 at yahoo dot co.uk> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |csaba_22 at yahoo dot co.uk
--- Comment #11 from Csaba Ráduly <csaba_22 at yahoo dot co.uk> ---
That is not going to work.
$ gcc -dumpversion
4.8.2
$ gcc -E -dM -x c /dev/null | egrep -i 'ansi|std'
#define _stdcall __attribute__((__stdcall__))
#define __STDC_HOSTED__ 1
#define __stdcall __attribute__((__stdcall__))
#define __STDC__ 1
$ g++ -dumpversion
4.8.2
$ g++ -E -dM -x c++ /dev/null | egrep -i 'ansi|std'
#define _stdcall __attribute__((__stdcall__))
#define __STDC_HOSTED__ 1
#define __stdcall __attribute__((__stdcall__))
#define __STDC__ 1