This file is indexed.

/usr/include/openwsman/u/gettimeofday.h is in libopenwsman-dev 2.4.3-0ubuntu4.

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
/*
 * Copyright (c) 2005, 2006 by KoanLogic s.r.l. - All rights reserved.
 */
#ifndef _LIBU_GETTIMEOFDAY_H_
#define _LIBU_GETTIMEOFDAY_H_

#include <time.h>
#ifdef TIME_WITH_SYS_TIME
#include <sys/time.h>
#endif

#ifdef WIN32

#ifdef __cplusplus
extern "C" {
#endif

struct timezone
{
    int tz_minuteswest;
    int tz_dsttime;
};

int gettimeofday(struct timeval *tp, struct timezone *tzp);

#ifdef __cplusplus
}
#endif

#endif /* HAVE_GETTIMEOFDAY */

#endif