blob: 23530a708634e6287b7a9be8827bea5b0686cc9e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
/*
* Items: catgets(
* Standardized-By: SuS
* Not-Detected-by: gcc-4.4.3 + Linux
*/
#include <nl_types.h>
main(int arg, char **argv)
{
(void) catgets(0, 0, 0, "foobar");
}
|