/usr/include/upnp/UpnpStdInt.h is in libupnp1.8-dev 1:1.8.2-3.
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 | #ifndef UPNPSTDINT_H
#define UPNPSTDINT_H
/* Sized integer types. */
#include <stdint.h>
#if !defined(UPNP_USE_BCBPP)
#ifdef UPNP_USE_MSVCPP
/* no ssize_t defined for VC */
#ifdef _WIN64
typedef int64_t ssize_t;
#else
typedef int32_t ssize_t;
#endif
#endif
#endif /* !defined(UPNP_USE_BCBPP) */
#endif /* UPNPSTDINT_H */
|