diff options
author | Jaywalker <jwilliams@nsllc.com> | 2018-02-06 17:48:39 -0600 |
---|---|---|
committer | Sam Bingner <sam@bingner.com> | 2020-07-17 00:22:23 -1000 |
commit | 12b140dcbd782b47fe0758f40d5c69f6008afe23 (patch) | |
tree | cb856e9edba2040467fe10961b8a1e24e5416f28 /apt-pkg/missing.h | |
parent | 6f660d119bab8e260796f9a020574a3c0a255f20 (diff) |
Added seemingly missing files
Diffstat (limited to 'apt-pkg/missing.h')
-rw-r--r-- | apt-pkg/missing.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/apt-pkg/missing.h b/apt-pkg/missing.h new file mode 100644 index 000000000..441b47ce1 --- /dev/null +++ b/apt-pkg/missing.h @@ -0,0 +1,26 @@ +#define _GNU_SOURCE +#include <sys/socket.h> +#include <netinet/in.h> +#include <netdb.h> +#include <inttypes.h> +#include <errno.h> +#include <string.h> + +#ifndef PKGLIB_MISSING_H +#define PKGLIB_MISSING_H + +extern "C" { + void *memrchr(const void *s, int c, size_t n); + void *rawmemchr(const void *s, int c); + char *strchrnul(const char *s, int c); + int getservbyport_r(int port, const char *prots, struct servent *se, char *buf, size_t buflen, struct servent **res); +} + +typedef void (*sighandler_t)(int); + +extern char **environ; + +#define AI_IDN 0x0040 + +#endif + |