Blob


1 /*
2 * Copyright (c) 2021 Omar Polo <op@omarpolo.com>
3 *
4 * Permission to use, copy, modify, and distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
7 *
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 */
17 #ifndef COMPAT_H
18 #define COMPAT_H
20 #include "config.h"
22 #include <sys/types.h>
23 #include <sys/uio.h>
25 #include <stdarg.h>
26 #include <stddef.h>
27 #include <stdint.h>
29 #ifdef HAVE_QUEUE_H
30 # include <sys/queue.h>
31 #else
32 # include "compat/queue.h"
33 #endif
35 #ifdef HAVE_LIBUTIL
36 # include <imsg.h>
37 # include <ohash.h>
38 #else
39 # include "compat/imsg.h"
40 # include "compat/ohash.h"
41 #endif
43 #ifndef HAVE_ASPRINTF
44 int asprintf(char**, const char*, ...);
45 int vasprintf(char**, const char*, va_list);
46 #endif
48 #ifndef HAVE_ERR
49 void err(int, const char*, ...);
50 void errx(int, const char*, ...);
51 void warn(int, const char*, ...);
52 void warnx(int, const char*, ...);
53 #endif
55 #ifndef HAVE_FREEZERO
56 void freezero(void*, size_t);
57 #endif
59 #ifndef HAVE_GETDTABLECOUNT
60 int getdtablecount(void);
61 #endif
63 #ifndef HAVE_GETDTABLESIZE
64 int getdtablesize(void);
65 #endif
67 #ifndef HAVE_GETPROGNAME
68 const char *getprogname(void);
69 #endif
71 #ifndef HAVE_MEMMEM
72 void *memmem(const void*, size_t, const void*, size_t);
73 #endif
75 #ifndef HAVE_RECALLOCARRAY
76 void *recallocarray(void*, size_t, size_t, size_t);
77 #endif
79 #ifndef HAVE_STRLCPY
80 size_t strlcpy(char*, const char*, size_t);
81 #endif
83 #ifndef HAVE_STRLCAT
84 size_t strlcat(char*, const char*, size_t);
85 #endif
87 #ifndef HAVE_STRTONUM
88 long long strtonum(const char*, long long, long long, const char*);
89 #endif
91 #ifndef HAVE_SETPROCTITLE
92 void setproctitle(const char*, ...);
93 #endif
95 #endif /* COMPAT_H */