summaryrefslogtreecommitdiffstats
path: root/source/intl/intl-compat.c
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2001-10-15 05:11:31 +0000
committerAndrew Tridgell <tridge@samba.org>2001-10-15 05:11:31 +0000
commitaaa1e9315e5c8cc6ef4517aa9ec4f22fd2f0eb5c (patch)
tree3c8a291f7287e01c989c11e7688b498d55210abb /source/intl/intl-compat.c
parentdd3ad91724125df355d1ff9050a1262d9d4f2cbf (diff)
downloadsamba-aaa1e9315e5c8cc6ef4517aa9ec4f22fd2f0eb5c.tar.gz
samba-aaa1e9315e5c8cc6ef4517aa9ec4f22fd2f0eb5c.tar.xz
samba-aaa1e9315e5c8cc6ef4517aa9ec4f22fd2f0eb5c.zip
removed unused gettext code
Diffstat (limited to 'source/intl/intl-compat.c')
-rw-r--r--source/intl/intl-compat.c76
1 files changed, 0 insertions, 76 deletions
diff --git a/source/intl/intl-compat.c b/source/intl/intl-compat.c
deleted file mode 100644
index 503efa0fa9c..00000000000
--- a/source/intl/intl-compat.c
+++ /dev/null
@@ -1,76 +0,0 @@
-/* intl-compat.c - Stub functions to call gettext functions from GNU gettext
- Library.
- Copyright (C) 1995 Software Foundation, Inc.
-
-This program is free software; you can redistribute it and/or modify
-it under the terms of the GNU General Public License as published by
-the Free Software Foundation; either version 2, or (at your option)
-any later version.
-
-This program is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-GNU General Public License for more details.
-
-You should have received a copy of the GNU General Public License
-along with this program; if not, write to the Free Software
-Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
-
-#ifdef HAVE_CONFIG_H
-# include <config.h>
-#endif
-
-#include "libgettext.h"
-
-/* @@ end of prolog @@ */
-
-
-#undef gettext
-#undef dgettext
-#undef dcgettext
-#undef textdomain
-#undef bindtextdomain
-
-
-char *
-bindtextdomain (domainname, dirname)
- const char *domainname;
- const char *dirname;
-{
- return bindtextdomain__ (domainname, dirname);
-}
-
-
-char *
-dcgettext (domainname, msgid, category)
- const char *domainname;
- const char *msgid;
- int category;
-{
- return dcgettext__ (domainname, msgid, category);
-}
-
-
-char *
-dgettext (domainname, msgid)
- const char *domainname;
- const char *msgid;
-{
- return dgettext__ (domainname, msgid);
-}
-
-
-char *
-gettext (msgid)
- const char *msgid;
-{
- return gettext__ (msgid);
-}
-
-
-char *
-textdomain (domainname)
- const char *domainname;
-{
- return textdomain__ (domainname);
-}