This file is indexed.

/usr/include/nxcl/nxclientlib_i18n.h is in libnxcl-dev 0.9-3.1ubuntu1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
extern "C" {
#ifndef __NXCLIENTLIB_I18N__
#  define __NXCLIENTLIB_I18N__

#define _(String) (String)
#define N_(String) String


/*
#  ifdef HAVE_CONFIG_H
#    include <config.h>
#  endif
#  ifdef ENABLE_NLS
#    include "../lib/gettext.h"
#    define _(String) gettext (String)
#    define gettext_noop(String) String
#    define N_(String) gettext_noop (String)
#  else
#    define _(String) (String)
#    define N_(String) String
#    define textdomain(Domain) (Domain)
#    define gettext(String) (String)
#    define dgettext(Domain,String) (String)
#    define dcgettext(Domain,String,Type) (String)
#    define bindtextdomain(Domain, Directory) (Domain) 
#    define bind_textdomain_codeset(Domain,Codeset) (Codeset) 
#  endif
*/
#endif /* __NXCLIENTLIB_I18N__ */
}