* c.texi (Pragma Basics): Fix pragma names.

This commit is contained in:
Ineiev 2025-04-29 10:45:21 +00:00
parent d3636695d4
commit d48e338f99
1 changed files with 3 additions and 3 deletions

6
c.texi
View File

@ -12712,12 +12712,12 @@ Equivalent to @code{#warning}. Its advantage is that the
Equivalent to @code{#error}. Its advantage is that the Equivalent to @code{#error}. Its advantage is that the
@code{_Pragma} form can be included in a macro definition. @code{_Pragma} form can be included in a macro definition.
@item #pragma GCC message @var{message} @item #pragma message @var{message}
@itemx _Pragma ("GCC message @var{message}") @itemx _Pragma ("message @var{message}")
Similar to @samp{GCC warning} and @samp{GCC error}, this simply prints an Similar to @samp{GCC warning} and @samp{GCC error}, this simply prints an
informational message, and could be used to include additional warning informational message, and could be used to include additional warning
or error text without triggering more warnings or errors. (Note that or error text without triggering more warnings or errors. (Note that
unlike @samp{warning} and @samp{error}, @samp{message} does not include unlike @samp{GCC warning} and @samp{GCC error}, @samp{message} does not include
@samp{GCC} as part of the pragma.) @samp{GCC} as part of the pragma.)
@end table @end table