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 # include <util.h>
39 #else
40 # include "compat/imsg.h"
41 # include "compat/ohash.h"
42 # define FMT_SCALED_STRSIZE 7 /* minus sign, 4 digits, suffix, null byte */
43 int fmt_scaled(long long, char *);
44 #endif
46 #ifndef HAVE_GETPROGNAME
47 const char *getprogname(void);
48 #endif
50 #ifndef HAVE_SETPROGNAME
51 void setproctitle(const char *, ...);
52 #endif
54 #endif