This file is indexed.

/usr/include/x86_64-linux-gnu/solv/poolarch.h is in libsolv0-dev 0.6.11-1.1.

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
/*
 * Copyright (c) 2007, Novell Inc.
 *
 * This program is licensed under the BSD license, read LICENSE.BSD
 * for further information
 */

#ifndef LIBSOLV_POOLARCH_H
#define LIBSOLV_POOLARCH_H

#include "pool.h"

#ifdef __cplusplus
extern "C" {
#endif

extern void pool_setarch(Pool *, const char *);
extern void pool_setarchpolicy(Pool *, const char *);
extern unsigned char pool_arch2color_slow(Pool *pool, Id arch);

#define ARCHCOLOR_32    1
#define ARCHCOLOR_64    2
#define ARCHCOLOR_ALL   255

static inline unsigned char pool_arch2color(Pool *pool, Id arch)
{
  if (arch > pool->lastarch)
    return ARCHCOLOR_ALL;
  if (pool->id2color && pool->id2color[arch])
    return pool->id2color[arch];
  return pool_arch2color_slow(pool, arch);
}

static inline int pool_colormatch(Pool *pool, Solvable *s1, Solvable *s2)
{
  if (s1->arch == s2->arch)
    return 1;
  if ((pool_arch2color(pool, s1->arch) & pool_arch2color(pool, s2->arch)) != 0)
    return 1;
  return 0;
}

#ifdef __cplusplus
}
#endif

#endif /* LIBSOLV_POOLARCH_H */