diff options
author | 2013-04-04 22:01:32 +0000 | |
---|---|---|
committer | 2013-04-04 22:01:32 +0000 | |
commit | 341535f4ee001bb1fce8215b46eb7a89e1d0892b (patch) | |
tree | 26e8d4495038d63655211cf67b6ddde65d17b09c /gnu/gcc/libcpp/include/cpplib.h | |
parent | The intel_dp_i2c_aux_ch() function has to return Linux-style negative errno (diff) | |
download | wireguard-openbsd-341535f4ee001bb1fce8215b46eb7a89e1d0892b.tar.xz wireguard-openbsd-341535f4ee001bb1fce8215b46eb7a89e1d0892b.zip |
Add support for "d" floating-point suffix, as defined by draft N1312
of TR 24732. Emit pedantic warning if the feature is being used.
Requested by jasper@; needed by certain ports. OK miod@.
Diffstat (limited to 'gnu/gcc/libcpp/include/cpplib.h')
-rw-r--r-- | gnu/gcc/libcpp/include/cpplib.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gnu/gcc/libcpp/include/cpplib.h b/gnu/gcc/libcpp/include/cpplib.h index 5fb80d9e820..bb0bfff7b62 100644 --- a/gnu/gcc/libcpp/include/cpplib.h +++ b/gnu/gcc/libcpp/include/cpplib.h @@ -748,6 +748,7 @@ struct cpp_num #define CPP_N_UNSIGNED 0x1000 /* Properties. */ #define CPP_N_IMAGINARY 0x2000 #define CPP_N_DFLOAT 0x4000 +#define CPP_N_DEFAULT 0x8000 /* Classify a CPP_NUMBER token. The return value is a combination of the flags from the above sets. */ |