/mdk-stage1/pcmcia_/

2-branch Mageia Installer and base platform for many utilitiesThierry Vignaud [tv]
summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/include/libintl.h
blob: 20873f55fcff17b9699f3e0fec2b674411b0409e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef _LIBINTL_H
#define _LIBINTL_H

#include <sys/cdefs.h>
#include <sys/types.h>
#include <locale.h>

#define gettext(msgid) dgettext(0,msgid)
#define dgettext(domainname,msgid) dcgettext(domainname,msgid,LC_MESSAGES)

#define ngettext(msgid1,msgid2,n) dngettext(0,msgid1,msgid2,n)