~ubuntu-branches/ubuntu/feisty/net-tools/feisty

« back to all changes in this revision

Viewing changes to intl.h

  • Committer: Bazaar Package Importer
  • Author(s): Bernd Eckenfels
  • Date: 2001-11-24 06:26:37 UTC
  • Revision ID: james.westby@ubuntu.com-20011124062637-1y96kzx03e8dbi55
Tags: upstream-1.60
ImportĀ upstreamĀ versionĀ 1.60

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* Dummy header for libintl.h */
 
2
 
 
3
#if I18N
 
4
#include <locale.h>
 
5
#undef __OPTIMIZE__
 
6
#include <libintl.h>
 
7
#define _(String) gettext((String))
 
8
#define N_(String) (String)
 
9
#else
 
10
#define _(String) (String)
 
11
#define N_(String) (String)
 
12
#endif