comparison gcc/c-family/known-headers.cc @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +0900
parents 84e7813d76e9
children
comparison
equal deleted inserted replaced
131:84e7813d76e9 145:1830386684a0
1 /* Support for suggestions about missing #include directives. 1 /* Support for suggestions about missing #include directives.
2 Copyright (C) 2017-2018 Free Software Foundation, Inc. 2 Copyright (C) 2017-2020 Free Software Foundation, Inc.
3 3
4 This file is part of GCC. 4 This file is part of GCC.
5 5
6 GCC is free software; you can redistribute it and/or modify it under 6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free 7 the terms of the GNU General Public License as published by the Free
82 {"UINT_MAX", {"<limits.h>", "<climits>"} }, 82 {"UINT_MAX", {"<limits.h>", "<climits>"} },
83 {"ULLONG_MAX", {"<limits.h>", "<climits>"} }, 83 {"ULLONG_MAX", {"<limits.h>", "<climits>"} },
84 {"ULONG_MAX", {"<limits.h>", "<climits>"} }, 84 {"ULONG_MAX", {"<limits.h>", "<climits>"} },
85 {"USHRT_MAX", {"<limits.h>", "<climits>"} }, 85 {"USHRT_MAX", {"<limits.h>", "<climits>"} },
86 86
87 /* <float.h> and <cfloat>. */
88 {"DBL_MAX", {"<float.h>", "<cfloat>"} },
89 {"DBL_MIN", {"<float.h>", "<cfloat>"} },
90 {"FLT_MAX", {"<float.h>", "<cfloat>"} },
91 {"FLT_MIN", {"<float.h>", "<cfloat>"} },
92 {"LDBL_MAX", {"<float.h>", "<cfloat>"} },
93 {"LDBL_MIN", {"<float.h>", "<cfloat>"} },
94
87 /* <stdarg.h> and <cstdarg>. */ 95 /* <stdarg.h> and <cstdarg>. */
88 {"va_list", {"<stdarg.h>", "<cstdarg>"} }, 96 {"va_list", {"<stdarg.h>", "<cstdarg>"} },
89 97
90 /* <stddef.h> and <cstddef>. */ 98 /* <stddef.h> and <cstddef>. */
91 {"NULL", {"<stddef.h>", "<cstddef>"} }, 99 {"NULL", {"<stddef.h>", "<cstddef>"} },