This file is indexed.

/usr/include/sidplay/mytypes.h is in libsidplay1-dev 1.36.59-6.

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
//
// /home/ms/source/sidplay/libsidplay/include/RCS/mytypes.h,v
//

#ifndef SIDPLAY1_MYTYPES_H
#define SIDPLAY1_MYTYPES_H


#include "compconf.h"

// A ``bool'' type for compilers that don't (yet) support one.
#if !defined(SID_HAVE_BOOL)
  typedef int bool;

  #if defined(true) || defined(false)
    #error Better check include file ``mytypes.h''.
    #undef true
    #undef false
  #endif
  #define true 1
  #define false 0
#endif


// Wanted: 8-bit signed/unsigned.
typedef signed char sbyte;
typedef unsigned char ubyte;

// Wanted: 16-bit signed/unsigned.
typedef signed short int sword;
typedef unsigned short int uword;

// Wanted: 32-bit signed/unsigned.
typedef signed long int sdword;
typedef unsigned long int udword;


// Some common type shortcuts.
typedef unsigned char uchar;
typedef unsigned int uint;
typedef unsigned long int ulong;


#if defined(SID_FPUFILTER)
  typedef float filterfloat;
#else
  #include "fixpoint.h"
  typedef fixed filterfloat;
#endif


typedef void (*ptr2func)();


#endif  /* SIDPLAY1_MYTYPES_H */