The R Project SVN R

Rev

Rev 36792 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 36792 Rev 41539
Line 51... Line 51...
51
#endif
51
#endif
52
 
52
 
53
/* Look up MSGID in the current default message catalog for the current
53
/* Look up MSGID in the current default message catalog for the current
54
   LC_MESSAGES locale.  If not found, returns MSGID itself (the default
54
   LC_MESSAGES locale.  If not found, returns MSGID itself (the default
55
   text).  */
55
   text).  */
-
 
56
#ifdef HAVE_VISIBILITY_ATTRIBUTE
-
 
57
__attribute__ ((visibility ("default")))
-
 
58
#endif
56
char *
59
char *
57
NGETTEXT (const char *msgid1, const char *msgid2, unsigned long int n)
60
NGETTEXT (const char *msgid1, const char *msgid2, unsigned long int n)
58
{
61
{
59
  return DCNGETTEXT (NULL, msgid1, msgid2, n, LC_MESSAGES);
62
  return DCNGETTEXT (NULL, msgid1, msgid2, n, LC_MESSAGES);
60
}
63
}