This file is indexed.

/usr/include/spooles/timings.h is in libspooles-dev 2.2-11.

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
#ifndef _TIMINGS_
#define _TIMINGS_
#include <sys/time.h>
#include <time.h>
#include <stdlib.h>
#include <stdio.h>
static struct timeval  TV ;
#define MARKTIME(t) \
   gettimeofday(&TV, NULL) ; \
   t = (TV.tv_sec + 0.000001*TV.tv_usec)
#endif