This file is indexed.

/usr/include/giac/giacintl.h is in libgiac-dev 1.2.3.57+dfsg1-2build3.

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
31
32
33
34
#ifndef _GIACINTL_H
#define _GIACINTL_H

#ifdef HAVE_CONFIG_H
#include "config.h"
#endif

#include "first.h"

#ifndef FIR
#if (defined(__APPLE__) && !defined(INT128)) || defined(__FreeBSD__)
#include <libintl.h>
#ifndef _LIBINTL_H
#define _LIBINTL_H      1
#endif
#endif
#endif

#ifdef HAVE_GETTEXT
#include <libintl.h>
#else

#ifndef _LIBINTL_H
#define _LIBINTL_H      1
#define __LIBINTL_H_DEFINED__ // Pour NetBSD 
#if defined GIAC_HAS_STO_38 || defined EMCC
const char * gettext(const char * s); // in aspen.cc or opengl.cc
#else
inline const char * gettext(const char * s) { return s; };
#endif
#endif // _LIBINTL_H

#endif // HAVE_GETTEXT
#endif // _GIACINTL_H