/usr/include/tclcl/tclcl-config.h is in libtclcl1-dev 1.20-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 | #ifndef TCLCL_CONFIG_H
#define TCLCL_CONFIG_H
#ifdef WIN32
#include <windows.h>
#include <winsock.h>
typedef unsigned int UINT;
#ifndef TIMEZONE_DEFINED_
#define TIMEZONE_DEFINED_
struct timezone {
int tz_minuteswest;
int tz_dsttime;
};
#endif
#if defined(__cplusplus)
extern "C" {
#endif
int gettimeofday(struct timeval *tp, struct timezone *tz);
void displayErr(const char* prefix);
#if defined(__cplusplus)
} /* end extern "C" */
#endif
#endif /* WIN32 */
// 64-bit integer support
#if defined(SIZEOF_LONG) && SIZEOF_LONG >= 8
#define STRTOI64 strtol
#define STRTOI64_FMTSTR "%ld"
#elif defined(HAVE_STRTOQ)
#define STRTOI64 strtoq
#define STRTOI64_FMTSTR "%lld"
#elif defined(HAVE_STRTOLL)
#define STRTOI64 strtoll
#define STRTOI64_FMTSTR "%lld"
#endif
#endif /*TCLCL_CONFIG_H*/
|