This file is indexed.

/usr/include/x86_64-linux-gnu/singular/omalloc/omConfig.h is in libsingular4-dev 1:4.1.0-p3+ds-2build1.

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
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
#ifndef _OMALLOC_OMCONFIG_H
#define _OMALLOC_OMCONFIG_H 1
 
/* omConfig.h. Generated automatically at end of configure. */
 
/* _config.h.  Generated from _config.h.in by configure.  */
/* _config.h.in.  Generated from configure.ac by autoheader.  */

/* Define to 1 if you have the <dlfcn.h> header file. */
#ifndef HAVE_DLFCN_H
#define HAVE_DLFCN_H 1
#endif

/* Define to 1 if you have the <fcntl.h> header file. */
#ifndef HAVE_FCNTL_H
#define HAVE_FCNTL_H 1
#endif

/* Define to 1 if you have the <inttypes.h> header file. */
#ifndef HAVE_INTTYPES_H
#define HAVE_INTTYPES_H 1
#endif

/* Define to 1 if you have the <limits.h> header file. */
#ifndef HAVE_LIMITS_H
#define HAVE_LIMITS_H 1
#endif

/* Define to 1 if you have the `malloc_size' function. */
/* #undef HAVE_MALLOC_SIZE */

/* Define to 1 if you have the `malloc_usable_size' function. */
#ifndef HAVE_MALLOC_USABLE_SIZE
#define HAVE_MALLOC_USABLE_SIZE 1
#endif

/* Define to 1 if you have the <memory.h> header file. */
#ifndef HAVE_MEMORY_H
#define HAVE_MEMORY_H 1
#endif

/* Define to 1 if you have the `mmap' function. */
#ifndef HAVE_MMAP
#define HAVE_MMAP 1
#endif

/* Define to 1 if you have the `popen' function. */
#ifndef HAVE_POPEN
#define HAVE_POPEN 1
#endif

/* Define to 1 if you have the `random' function. */
#ifndef HAVE_RANDOM
#define HAVE_RANDOM 1
#endif

/* Define to 1 if you have the `sbrk' function. */
#ifndef HAVE_SBRK
#define HAVE_SBRK 1
#endif

/* Define to 1 if you have the <stdint.h> header file. */
#ifndef HAVE_STDINT_H
#define HAVE_STDINT_H 1
#endif

/* Define to 1 if you have the <stdlib.h> header file. */
#ifndef HAVE_STDLIB_H
#define HAVE_STDLIB_H 1
#endif

/* Define to 1 if you have the <strings.h> header file. */
#ifndef HAVE_STRINGS_H
#define HAVE_STRINGS_H 1
#endif

/* Define to 1 if you have the <string.h> header file. */
#ifndef HAVE_STRING_H
#define HAVE_STRING_H 1
#endif

/* Define to 1 if you have the <sys/mman.h> header file. */
#ifndef HAVE_SYS_MMAN_H
#define HAVE_SYS_MMAN_H 1
#endif

/* Define to 1 if you have the <sys/stat.h> header file. */
#ifndef HAVE_SYS_STAT_H
#define HAVE_SYS_STAT_H 1
#endif

/* Define to 1 if you have the <sys/types.h> header file. */
#ifndef HAVE_SYS_TYPES_H
#define HAVE_SYS_TYPES_H 1
#endif

/* Define to 1 if you have the <unistd.h> header file. */
#ifndef HAVE_UNISTD_H
#define HAVE_UNISTD_H 1
#endif

/* "Whether we have a working mmap" */
#ifndef HAVE_WORKING_MMAP
#define HAVE_WORKING_MMAP 1
#endif

/* Define to 1 if you have the </usr/include/malloc.h> header file. */
#ifndef HAVE__USR_INCLUDE_MALLOC_H
#define HAVE__USR_INCLUDE_MALLOC_H 1
#endif

/* Define to the sub-directory where libtool stores uninstalled libraries. */
#ifndef LT_OBJDIR
#define LT_OBJDIR ".libs/"
#endif

/* use external malloc as system allocator */
/* #undef OMALLOC_USES_EXTERNAL_MALLOC */

/* the system allocator is called malloc */
#ifndef OMALLOC_USES_MALLOC
#define OMALLOC_USES_MALLOC 1
#endif

/* use system malloc as system allocator */
#ifndef OMALLOC_USES_SYSTEM_MALLOC
#define OMALLOC_USES_SYSTEM_MALLOC 1
#endif

/* "Whether alignment needs work" */
/* #undef OM_ALIGNMENT_NEEDS_WORK */

/* "Align to 8 bytes" */
#ifndef OM_ALIGN_8
#define OM_ALIGN_8 1
#endif

/* "Whether omInitGetBackTrace () works" */
/* #undef OM_GET_BACKTRACE_WORKS */

/* "Whether get return address works" */
/* #undef OM_GET_RETURN_ADDR_WORKS */

/* "Whether we have dense bins" */
/* #undef OM_HAVE_DENSE_BIN_DISTRIBUTION */

/* "Wether we have an external config.c" */
/* #undef OM_HAVE_EXTERNAL_CONFIG_C */

/* "Whether we have external config.h" */
/* #undef OM_HAVE_EXTERNAL_CONFIG_H */

/* "Whether we have the source for malloc ()" */
/* #undef OM_HAVE_MALLOC_SOURCE */

/* "Have track" */
/* #undef OM_HAVE_TRACK */

/* "Have valloc" */
/* #undef OM_HAVE_VALLOC_MALLOC */

/* "Have valloc" */
#ifndef OM_HAVE_VALLOC_MMAP
#define OM_HAVE_VALLOC_MMAP 1
#endif

/* "inline-declaration" */
#ifndef OM_INLINE
#define OM_INLINE static inline
#endif

/* "inline-declaration" */
#ifndef OM_INLINE_DECL
#define OM_INLINE_DECL static inline
#endif

/* "inline-declaration" */
#ifndef OM_INLINE_IMPL
#define OM_INLINE_IMPL static inline
#endif

/* "inline-declaration" */
#ifndef OM_INLINE_LOCAL
#define OM_INLINE_LOCAL static inline
#endif

/* "Internal debug" */
/* #undef OM_INTERNAL_DEBUG */

/* "Disable debug" */
#ifndef OM_NDEBUG
#define OM_NDEBUG 1
#endif

/* "Name of addr2line" */
#ifndef OM_PROG_ADDR2LINE
#define OM_PROG_ADDR2LINE "addr2line"
#endif

/* Provide NO standard routines! */
#ifndef OM_PROVIDE_MALLOC
#define OM_PROVIDE_MALLOC 0
#endif

/* "Whether to track backtrace" */
/* #undef OM_TRACK_BACKTRACE */

/* "Enable custom tracking" */
/* #undef OM_TRACK_CUSTOM */

/* "Whether to track file-line" */
#ifndef OM_TRACK_FILE_LINE
#define OM_TRACK_FILE_LINE 1
#endif

/* "Whether to track return" */
/* #undef OM_TRACK_RETURN */

/* Name of package */
#ifndef PACKAGE
#define PACKAGE "omalloc"
#endif

/* Define to the address where bug reports for this package should be sent. */
#ifndef PACKAGE_BUGREPORT
#define PACKAGE_BUGREPORT ""
#endif

/* Define to the full name of this package. */
#ifndef PACKAGE_NAME
#define PACKAGE_NAME "omalloc"
#endif

/* Define to the full name and version of this package. */
#ifndef PACKAGE_STRING
#define PACKAGE_STRING "omalloc 0.9.6"
#endif

/* Define to the one symbol short name of this package. */
#ifndef PACKAGE_TARNAME
#define PACKAGE_TARNAME "omalloc"
#endif

/* Define to the home page for this package. */
#ifndef PACKAGE_URL
#define PACKAGE_URL ""
#endif

/* Define to the version of this package. */
#ifndef PACKAGE_VERSION
#define PACKAGE_VERSION "0.9.6"
#endif

/* The size of `double', as computed by sizeof. */
#ifndef SIZEOF_DOUBLE
#define SIZEOF_DOUBLE 8
#endif

/* The size of `long', as computed by sizeof. */
#ifndef SIZEOF_LONG
#define SIZEOF_LONG 8
#endif

/* Page-size of the build-system */
#ifndef SIZEOF_OM_PAGE
#define SIZEOF_OM_PAGE SIZEOF_SYSTEM_PAGE
#endif

/* The size of `size_t', as computed by sizeof. */
#ifndef SIZEOF_SIZE_T
#define SIZEOF_SIZE_T 8
#endif

/* "Page-size of the build-system" */
#ifndef SIZEOF_SYSTEM_PAGE
#define SIZEOF_SYSTEM_PAGE 4096
#endif

/* The size of `void*', as computed by sizeof. */
#ifndef SIZEOF_VOIDP
#define SIZEOF_VOIDP 8
#endif

/* Define to 1 if you have the ANSI C header files. */
#ifndef STDC_HEADERS
#define STDC_HEADERS 1
#endif

/* Version number of package */
#ifndef VERSION
#define VERSION "0.9.6"
#endif

/* "Type of void" */
#ifndef Void_t
#define Void_t void
#endif

/* Define to empty if `const' does not conform to ANSI C. */
/* #undef const */

/* Define to `__inline__' or `__inline' if that's what the C compiler
   calls it, or to nothing if 'inline' is not supported under any name.  */
#ifndef __cplusplus
/* #undef inline */
#endif
 
/* once: _OMALLOC_OMCONFIG_H */
#endif