mirror of
https://github.com/cesanta/mongoose.git
synced 2024-12-05 02:49:00 +08:00
be more C89-friendly
This commit is contained in:
parent
ddf3ba8a15
commit
90623492b7
@ -1965,11 +1965,11 @@ extern "C" {
|
|||||||
if possible, carefully pick your associated data.
|
if possible, carefully pick your associated data.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Make sure we are either nested in C++ or running in a C99+ compiler
|
/* Make sure we are either nested in C++ or running in a C99+ compiler
|
||||||
#if !defined(__cplusplus) && !defined(_MSC_VER) && \
|
#if !defined(__cplusplus) && !defined(_MSC_VER) && \
|
||||||
(!defined(__STDC_VERSION__) || __STDC_VERSION__ < 199901L)
|
(!defined(__STDC_VERSION__) || __STDC_VERSION__ < 199901L)
|
||||||
#error "C99 or newer required"
|
#error "C99 or newer required"
|
||||||
#endif
|
#endif */
|
||||||
|
|
||||||
// #if CHAR_BIT > 8
|
// #if CHAR_BIT > 8
|
||||||
// # error "Systems without native octals not suppoted"
|
// # error "Systems without native octals not suppoted"
|
||||||
|
@ -26,11 +26,11 @@ extern "C" {
|
|||||||
if possible, carefully pick your associated data.
|
if possible, carefully pick your associated data.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Make sure we are either nested in C++ or running in a C99+ compiler
|
/* Make sure we are either nested in C++ or running in a C99+ compiler
|
||||||
#if !defined(__cplusplus) && !defined(_MSC_VER) && \
|
#if !defined(__cplusplus) && !defined(_MSC_VER) && \
|
||||||
(!defined(__STDC_VERSION__) || __STDC_VERSION__ < 199901L)
|
(!defined(__STDC_VERSION__) || __STDC_VERSION__ < 199901L)
|
||||||
#error "C99 or newer required"
|
#error "C99 or newer required"
|
||||||
#endif
|
#endif */
|
||||||
|
|
||||||
// #if CHAR_BIT > 8
|
// #if CHAR_BIT > 8
|
||||||
// # error "Systems without native octals not suppoted"
|
// # error "Systems without native octals not suppoted"
|
||||||
|
Loading…
Reference in New Issue
Block a user