Prototypes/typedefs cleanup

Add NL_CAT_LOCALE (will be implemented soon)
This commit is contained in:
Andrey A. Chernov 1998-04-30 10:09:58 +00:00
parent 9b7c9bc4f8
commit 3f5fb4817a
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=35545

View File

@ -1,4 +1,4 @@
/* $Id$ */
/* $Id: nl_types.h,v 1.4 1997/02/23 09:17:14 peter Exp $ */
/***********************************************************
Copyright 1990, by Alfalfa Software Incorporated, Cambridge, Massachusetts.
@ -36,13 +36,14 @@ up-to-date. Many thanks.
#define _NL_TYPES_H_
#include <sys/cdefs.h>
#define NL_SETD 0
#define NL_SETD 0
#define NL_CAT_LOCALE 1
typedef long nl_catd;
typedef long nl_item;
typedef int nl_item;
typedef void *nl_catd;
extern nl_catd catopen __P((__const char *, int));
extern char *catgets __P((nl_catd, int, int, char *));
extern char *catgets __P((nl_catd, int, int, __const char *));
extern int catclose __P((nl_catd));
#endif /* _NL_TYPES_H_ */