Deleted Added
sdiff udiff text old ( 96549 ) new ( 96557 )
full compact
1/* Definitions for c-common.c.
2 Copyright (C) 1987, 1993, 1994, 1995, 1997, 1998,
3 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
4
5This file is part of GCC.
6
7GCC is free software; you can redistribute it and/or modify it under
8the terms of the GNU General Public License as published by the Free

--- 5 unchanged lines hidden (view full) ---

14FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15for more details.
16
17You should have received a copy of the GNU General Public License
18along with GCC; see the file COPYING. If not, write to the Free
19Software Foundation, 59 Temple Place - Suite 330, Boston, MA
2002111-1307, USA. */
21
22/* $FreeBSD: head/contrib/gcc/c-common.h 96549 2002-05-14 00:30:25Z obrien $ */
23
24#ifndef GCC_C_COMMON_H
25#define GCC_C_COMMON_H
26
27#include "splay-tree.h"
28#include "cpplib.h"
29
30/* Usage of TREE_LANG_FLAG_?:

--- 379 unchanged lines hidden (view full) ---

410/* Warn about possible violations of sequence point rules. */
411
412extern int warn_sequence_point;
413
414/* Warn about functions which might be candidates for format attributes. */
415
416extern int warn_missing_format_attribute;
417
418/* Nonzero means warn about sizeof (function) or addition/subtraction
419 of function pointers. */
420
421extern int warn_pointer_arith;
422
423/* Nonzero means to warn about compile-time division by zero. */
424extern int warn_div_by_zero;
425

--- 456 unchanged lines hidden ---