OS/X headers expect __INTMAX_TYPE__ to be defined
[cparser] / diagnostic.h
index 2ce3b5d..113481c 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * This file is part of cparser.
- * Copyright (C) 2007-2008 Matthias Braun <matze@braunis.de>
+ * Copyright (C) 2007-2009 Matthias Braun <matze@braunis.de>
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License
  *  %Y  const symbol_t *
  *  %E  const expression_t *
  *  %Q  unsigned  (qualifier)
- *  %T  type_t
- *  %K  token_t
+ *  %T  const type_t*
+ *  %K  const token_t*
  *  %k  token_kind_t
  *  %P  const source_position_t *
- *
+ *  %S  const string_t *
  */
 void diagnosticf(const char *fmt, ...);
 void errorf(const source_position_t *pos, const char *fmt, ...);
@@ -62,7 +62,4 @@ extern unsigned diagnostic_count;
 extern unsigned error_count;
 extern unsigned warning_count;
 
-/* true if warnings should be inhibited */
-extern bool inhibit_all_warnings;
-
 #endif