summaryrefslogtreecommitdiffstats
path: root/freebsd-userspace/local/port_before.h
blob: d689bd7c748125f642b81c4aa649c96cdf0d9883 (plain) (blame)
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
#include <freebsd/bsd.h>

#include <freebsd/sys/_types.h>

/*********************************************************************
 *  These are also defined in the FreeBSD version of this file.
 *********************************************************************/

#define _LIBC      1
/*
 * This is defined in the FreeBSD source but we have no code yet which
 * relies upon it.
 */
/* #define DO_PTHREADS     1 */
#define USE_KQUEUE 1

#define ISC_SOCKLEN_T   socklen_t
#define ISC_FORMAT_PRINTF(fmt, args) \
        __attribute__((__format__(__printf__, fmt, args)))
#define DE_CONST(konst, var) \
        do { \
                union { const void *k; void *v; } _u; \
                _u.k = konst; \
                var = _u.v; \
        } while (0)

#define UNUSED(x) (x) = (x)


/*********************************************************************
 *  FROM HERE DOWN, THESE ARE NOT IN THE FreeBSD VERSION!!!
 *********************************************************************/
#ifndef __ssize_t
#define __ssize_t ssize_t
#endif

#include <freebsd/machine/_align.h>