X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=warning.c;h=05195e6227f04db7efa1d07e54daee80bc1fb057;hb=374f4042065f1aee975185d93612701b53ccba9a;hp=7d9c434494158583bfe9cec62a816e94f5d0fc44;hpb=12203c8feed97a48d4b4326eda40451ba3a736d0;p=cparser diff --git a/warning.c b/warning.c index 7d9c434..05195e6 100644 --- a/warning.c +++ b/warning.c @@ -1,3 +1,22 @@ +/* + * This file is part of cparser. + * Copyright (C) 2007-2008 Matthias Braun + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA + * 02111-1307, USA. + */ #include #include #include "warning.h" @@ -13,6 +32,7 @@ warning_t warning = { .main = true, .missing_declarations = false, .missing_prototypes = false, + .multichar = true, .redundant_decls = true, .s_are_errors = false, .shadow = false, @@ -87,6 +107,7 @@ void set_warning_opt(const char *const opt) OPT("main", main) OPT("missing-declarations", missing_declarations) OPT("missing-prototypes", missing_prototypes) + OPT("multichar", multichar) OPT("redundant-decls", redundant_decls) OPT("shadow", shadow) OPT("sign-compare", sign_compare)