This file is indexed.

/usr/include/astrotcl/compiler.h is in skycat 3.1.2+starlink1~b-8+b2.

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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
/* static char sccsid[] = "@(#) ST-ECF os/h/compiler.h	4.1	10/16/92"; */
/* @(#)compiler.h	1.1.1.1 (ESO-IPG) 7/11/91 20:24:30 */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
.TYPE 		Header
.NAME 		compiler.h
.LANGUAGE 	C
.AUTHOR		Francois Ochsenbein [ESO-IPG]
.CATEGORY	Compiler-specfic Definitions
.COMMENTS 	This module includes constants depending on the compiler.
.ENVIRONMENT	
.VERSION 1.0	Created file
------------------------------------------------------------*/

#ifndef COMPILER_DEF

#define COMPILER_DEF	0

/*===========================================================================
 *             Define Here Your Specific Implementation
 *===========================================================================*/
#define _TEMPLATES_	1	/* Function templates	*/

#if 0				/* Example */
#define CC_ENV		_TURBOC
#define _TEMPLATES_	1	/* Function templates	*/
#endif				/* End of Example */

/*===========================================================================
 *             Function Templates Facilities
 *===========================================================================*/

/*===========================================================================
 *             List of supported Compilers
 *===========================================================================*/

#define _TURBOC		1

#define CC_TURBOC	(CC_ENV == _TURBOC)

#ifndef CC_ENV
/*===========================================================================
 *             Definition of Default Compiler
 *===========================================================================*/
#define CC_ENV	0
#endif


#ifndef _TEMPLATES_
/*===========================================================================
 *             Definition of Allowed  Function Templates
 *===========================================================================*/
# ifndef OSDEFOS_DEF
#include "osdefos.h"
# endif
#if OS_VMS
# define _TEMPLATES_	1
#else
# define _TEMPLATES_	0
#endif
#endif

#endif