aboutsummaryrefslogtreecommitdiff
path: root/include/libintl.h
diff options
context:
space:
mode:
authorZack Weinberg <zackw@panix.com>2017-06-08 15:39:03 -0400
committerZack Weinberg <zackw@panix.com>2017-06-08 15:39:03 -0400
commit5046dbb4a7eba5eccfd258f92f4735c9ffc8d069 (patch)
tree4470480d904b65cf14ca524f96f79eca818c3eaf /include/libintl.h
parent199fc19d3aaaf57944ef036e15904febe877fc93 (diff)
downloadglibc-zack/build-layout-experiment.tar
glibc-zack/build-layout-experiment.tar.gz
glibc-zack/build-layout-experiment.tar.bz2
glibc-zack/build-layout-experiment.zip
Prepare for radical source tree reorganization.zack/build-layout-experiment
All top-level files and directories are moved into a temporary storage directory, REORG.TODO, except for files that will certainly still exist in their current form at top level when we're done (COPYING, COPYING.LIB, LICENSES, NEWS, README), all old ChangeLog files (which are moved to the new directory OldChangeLogs, instead), and the generated file INSTALL (which is just deleted; in the new order, there will be no generated files checked into version control).
Diffstat (limited to 'include/libintl.h')
-rw-r--r--include/libintl.h53
1 files changed, 0 insertions, 53 deletions
diff --git a/include/libintl.h b/include/libintl.h
deleted file mode 100644
index 9a11367ec6..0000000000
--- a/include/libintl.h
+++ /dev/null
@@ -1,53 +0,0 @@
-#ifndef _LIBINTL_H
-#include <intl/libintl.h>
-
-# ifndef _ISOMAC
-
-#include <locale.h>
-
-/* Now define the internal interfaces. */
-extern char *__gettext (const char *__msgid)
- __attribute_format_arg__ (1);
-extern char *__dgettext (const char *__domainname,
- const char *__msgid)
- __attribute_format_arg__ (2);
-extern char *__dcgettext (const char *__domainname,
- const char *__msgid, int __category)
- __attribute_format_arg__ (2);
-libc_hidden_proto (__dcgettext)
-
-extern char *__ngettext (const char *__msgid1, const char *__msgid2,
- unsigned long int __n)
- __attribute_format_arg__ (1) __attribute_format_arg__ (2);
-extern char *__dngettext (const char *__domainname,
- const char *__msgid1, const char *__msgid2,
- unsigned long int __n)
- __attribute_format_arg__ (2) __attribute_format_arg__ (3);
-extern char *__dcngettext (const char *__domainname,
- const char *__msgid1, const char *__msgid2,
- unsigned long int __n, int __category)
- __attribute_format_arg__ (2) __attribute_format_arg__ (3);
-
-extern char *__textdomain (const char *__domainname);
-extern char *__bindtextdomain (const char *__domainname,
- const char *__dirname);
-extern char *__bind_textdomain_codeset (const char *__domainname,
- const char *__codeset);
-
-extern const char _libc_intl_domainname[];
-libc_hidden_proto (_libc_intl_domainname)
-
-/* Define the macros `_' and `N_' for conveniently marking translatable
- strings in the libc source code. We have to make sure we get the
- correct definitions so we undefine the macros first. */
-
-# undef N_
-# define N_(msgid) msgid
-
-# undef _
-/* This is defined as an optimizing macro, so use it. */
-# define _(msgid) \
- __dcgettext (_libc_intl_domainname, msgid, LC_MESSAGES)
-
-# endif /* !_ISOMAC */
-#endif