1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-30 16:51:41 +00:00

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 Barcroft 2001-11-12 18:33:00 +00:00
parent 20a2016a81
commit dd05edcb0f
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=86302

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