mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-07 13:50:07 +00:00
13 lines
310 B
C
13 lines
310 B
C
|
#include <fmtmsg.h>
|
||
|
|
||
|
int
|
||
|
main (void)
|
||
|
{
|
||
|
addseverity (5, "NOTE2");
|
||
|
fmtmsg (MM_PRINT, "only1field", MM_INFO, "text2", "action2", "tag2");
|
||
|
fmtmsg (MM_PRINT, "UX:cat", 5, "invalid syntax", "refer to manual",
|
||
|
"UX:cat:001");
|
||
|
fmtmsg (MM_PRINT, "label:foo", 6, "text", "action", "tag");
|
||
|
return 0;
|
||
|
}
|