first attempt at enabling stack protector support
[musl.git] / include / nl_types.h
blobca61efb6ba91fc0eb94dc2f938fbec545ee798e3
1 #ifndef _NL_TYPES_H
2 #define _NL_TYPES_H
4 #ifdef __cplusplus
5 extern "C" {
6 #endif
8 #define NL_SETD 1
9 #define NL_CAT_LOCALE 1
11 #define __NEED_nl_item
12 #include <bits/alltypes.h>
14 typedef long nl_catd;
16 nl_catd catopen (const char *, int);
17 char *catgets (nl_catd, int, int, const char *);
18 int catclose (nl_catd);
20 #ifdef __cplusplus
22 #endif
24 #endif