BPicture: Fix archive constructor.
[haiku.git] / src / kits / locale / cat.cpp
blobe1c1ee1bfa774fe05198f05e1639697b3d3c24e8
1 /*
2 ** Copyright 2003, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
3 ** Distributed under the terms of the OpenBeOS License.
4 */
7 #include <nl_types.h>
10 nl_catd
11 catopen(const char *name, int oflag)
13 return (nl_catd)1;
17 char *
18 catgets(nl_catd cat, int setID, int msgID, const char *defaultMessage)
20 // should return "const char *"...
21 return const_cast<char *>(defaultMessage);
25 int
26 catclose(nl_catd)
28 return 0;