Mercurial > emacs
comparison src/config.in @ 31874:8db5d996cfdb
Fix typo in __GNUC_MINOR__.
author | Gerd Moellmann <gerd@gnu.org> |
---|---|
date | Mon, 25 Sep 2000 14:25:02 +0000 |
parents | 17e9dd6e4ef3 |
children | 79ed0fe45a53 |
comparison
equal
deleted
inserted
replaced
31873:3440ceda4745 | 31874:8db5d996cfdb |
---|---|
546 #endif | 546 #endif |
547 | 547 |
548 /* Should we enable expensive run-time checking of data types? */ | 548 /* Should we enable expensive run-time checking of data types? */ |
549 #undef ENABLE_CHECKING | 549 #undef ENABLE_CHECKING |
550 | 550 |
551 #if defined __GNUC__ && (__GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR >= 5)) | 551 #if defined __GNUC__ && (__GNUC__ > 2 \ |
552 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 5)) | |
552 #define NO_RETURN __attribute__ ((__noreturn__)) | 553 #define NO_RETURN __attribute__ ((__noreturn__)) |
553 #else | 554 #else |
554 #define NO_RETURN /* nothing */ | 555 #define NO_RETURN /* nothing */ |
555 #endif | 556 #endif |