]> git.eshelyaron.com Git - emacs.git/commitdiff
Don’t worry about __STDC_VERSION__ in emacs-module
authorPaul Eggert <eggert@cs.ucla.edu>
Thu, 15 Jun 2017 17:33:10 +0000 (10:33 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Thu, 15 Jun 2017 17:33:31 +0000 (10:33 -0700)
* src/emacs-module.h: Remove __STDC_VERSION__ check.  In the past
we’ve found that some compilers do not define this symbol even
when they work well enough.  If necessary features like stdbool.h
are missing the compiler will complain eventually anyway.

src/emacs-module.h

index ad102e6d84382c9cd496c13075fd417d2c0ace9f..f545a27b5fd42242bd51fc7d30126e3750ee4a00 100644 (file)
@@ -20,11 +20,6 @@ along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.  */
 #ifndef EMACS_MODULE_H
 #define EMACS_MODULE_H
 
-#if ! (defined __STDC_VERSION__ && __STDC_VERSION__ >= 199901L) \
-  && ! (defined __cplusplus && __cplusplus >= 199711L)
-# error "This file requires at least C99 or C++98"
-#endif
-
 #include <stdint.h>
 #include <stddef.h>