Add the ability to distinguish between compile environments that

support `long long' and those that don't.

Reviewed by:	bde
This commit is contained in:
mike 2001-11-12 18:33:00 +00:00
parent a8df74ab51
commit 7ad07a480a

View File

@ -133,6 +133,11 @@
#define __func__ NULL
#endif
/* XXX: should use `#if __STDC_VERSION__ >= 199901'. */
#if defined(__GNUC__) && !defined(__STRICT_ANSI__)
#define __LONG_LONG_SUPPORTED
#endif
/*
* Compiler-dependent macros to declare that functions take printf-like
* or scanf-like arguments. They are null except for versions of gcc