diff options
author | obrien <obrien@FreeBSD.org> | 2002-05-14 00:30:25 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2002-05-14 00:30:25 +0000 |
commit | 1e93bf0871ff1638dc1e4458d6dfe0529a9871e6 (patch) | |
tree | 86398e3fcc5ae1a4fad1cd40377f2650fbec5667 /contrib/gcc/cppinit.c | |
parent | a10a1944b6e10a27f5891b9e0ea2e52e8b4c2e19 (diff) | |
download | FreeBSD-src-1e93bf0871ff1638dc1e4458d6dfe0529a9871e6.zip FreeBSD-src-1e93bf0871ff1638dc1e4458d6dfe0529a9871e6.tar.gz |
Add framework for our kernel printf enhancements.
Diffstat (limited to 'contrib/gcc/cppinit.c')
-rw-r--r-- | contrib/gcc/cppinit.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/contrib/gcc/cppinit.c b/contrib/gcc/cppinit.c index 872ba6d..d15a884 100644 --- a/contrib/gcc/cppinit.c +++ b/contrib/gcc/cppinit.c @@ -19,6 +19,8 @@ You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ +/* $FreeBSD$ */ + #include "config.h" #include "system.h" #include "cpplib.h" @@ -1225,6 +1227,7 @@ new_pending_directive (pend, text, handler) DEF_OPT("std=gnu89", 0, OPT_std_gnu89) \ DEF_OPT("std=gnu99", 0, OPT_std_gnu99) \ DEF_OPT("std=gnu9x", 0, OPT_std_gnu9x) \ + DEF_OPT("std=bsd", 0, OPT_std_bsd) \ DEF_OPT("std=iso9899:1990", 0, OPT_std_iso9899_1990) \ DEF_OPT("std=iso9899:199409", 0, OPT_std_iso9899_199409) \ DEF_OPT("std=iso9899:1999", 0, OPT_std_iso9899_1999) \ @@ -1510,6 +1513,9 @@ cpp_handle_option (pfile, argc, argv, ignore) case OPT_std_gnu99: set_lang (pfile, CLK_GNUC99); break; + case OPT_std_bsd: + set_lang (pfile, CLK_GNUC89); + break; case OPT_std_iso9899_199409: set_lang (pfile, CLK_STDC94); break; |