blob: fe696454e1d12c1d0f62d7d2b189131f6203c082 [file] [log] [blame]
vlmfa67ddc2004-06-03 03:38:44 +00001/*-
vlmd97308e2007-06-29 11:38:57 +00002 * Copyright (c) 2003, 2004, 2007 Lev Walkin <vlm@lionet.info>.
3 * All rights reserved.
vlmfa67ddc2004-06-03 03:38:44 +00004 * Redistribution and modifications are permitted subject to BSD license.
5 */
6/*
7 * Miscellaneous system-dependent types.
8 */
vlm9de248e2004-10-20 15:50:55 +00009#ifndef _ASN_SYSTEM_H_
10#define _ASN_SYSTEM_H_
vlmfa67ddc2004-06-03 03:38:44 +000011
vlm75021432004-09-07 10:47:39 +000012#ifdef HAVE_CONFIG_H
13#include "config.h"
14#endif
15
vlm6534a8d2004-10-20 15:40:04 +000016#include <stdio.h> /* For snprintf(3) */
vlmfa67ddc2004-06-03 03:38:44 +000017#include <stdlib.h> /* For *alloc(3) */
18#include <string.h> /* For memcpy(3) */
19#include <sys/types.h> /* For size_t */
20#include <stdarg.h> /* For va_start */
vlmfa67ddc2004-06-03 03:38:44 +000021#include <stddef.h> /* for offsetof and ptrdiff_t */
vlm75021432004-09-07 10:47:39 +000022
vlm8a09e0f2005-02-25 14:20:30 +000023#ifdef WIN32
24
vlmb5a69432006-05-02 18:55:41 +000025#include <malloc.h>
26#include <stdint.h>
vlm8a09e0f2005-02-25 14:20:30 +000027#define snprintf _snprintf
28#define vsnprintf _vsnprintf
vlm8a09e0f2005-02-25 14:20:30 +000029
vlm7d398392006-11-21 10:38:50 +000030/* To avoid linking with ws2_32.lib, here's the definition of ntohl() */
vlm0a885a62006-11-27 13:31:35 +000031#define sys_ntohl(l) ((((l) << 24) & 0xff000000) \
32 | (((l) << 16) & 0xff0000) \
33 | (((l) << 8) & 0xff00) \
vlm7d398392006-11-21 10:38:50 +000034 | ((l) & 0xff))
35
vlm0b569402005-05-27 20:56:08 +000036#ifdef _MSC_VER /* MSVS.Net */
vlm7c05fdf2005-08-17 18:39:36 +000037#ifndef __cplusplus
38#define inline __inline
39#endif
vlm0b569402005-05-27 20:56:08 +000040#define ssize_t SSIZE_T
41typedef char int8_t;
42typedef short int16_t;
43typedef int int32_t;
44typedef unsigned char uint8_t;
45typedef unsigned short uint16_t;
46typedef unsigned int uint32_t;
47#define WIN32_LEAN_AND_MEAN
48#include <windows.h>
vlmcb4aaa72005-07-01 08:28:18 +000049#include <float.h>
50#define isnan _isnan
51#define finite _finite
52#define copysign _copysign
53#define ilogb _logb
vlm0b569402005-05-27 20:56:08 +000054#endif /* _MSC_VER */
55
vlm8a09e0f2005-02-25 14:20:30 +000056#else /* !WIN32 */
57
vlmb5a69432006-05-02 18:55:41 +000058#if defined(__vxworks)
59#include <types/vxTypes.h>
60#else /* !defined(__vxworks) */
61
vlm75021432004-09-07 10:47:39 +000062#include <inttypes.h> /* C99 specifies this file */
vlm75021432004-09-07 10:47:39 +000063/*
vlm6534a8d2004-10-20 15:40:04 +000064 * 1. Earlier FreeBSD version didn't have <stdint.h>,
vlm75021432004-09-07 10:47:39 +000065 * but <inttypes.h> was present.
vlm6534a8d2004-10-20 15:40:04 +000066 * 2. Sun Solaris requires <alloca.h> for alloca(3),
67 * but does not have <stdint.h>.
vlm75021432004-09-07 10:47:39 +000068 */
vlm8d0d3962004-10-25 22:58:35 +000069#if (!defined(__FreeBSD__) || !defined(_SYS_INTTYPES_H_))
vlm6534a8d2004-10-20 15:40:04 +000070#if defined(sun)
71#include <alloca.h> /* For alloca(3) */
vlm8a09e0f2005-02-25 14:20:30 +000072#include <ieeefp.h> /* for finite(3) */
vlm9d6283e2006-03-16 22:29:55 +000073#elif defined(__hpux)
74#ifdef __GNUC__
75#include <alloca.h> /* For alloca(3) */
76#else /* !__GNUC__ */
77#define inline
78#endif /* __GNUC__ */
vlm6534a8d2004-10-20 15:40:04 +000079#else
vlma4294b72004-09-07 07:26:32 +000080#include <stdint.h> /* SUSv2+ and C99 specify this file, for uintXX_t */
vlm8a09e0f2005-02-25 14:20:30 +000081#endif /* defined(sun) */
vlm6534a8d2004-10-20 15:40:04 +000082#endif
vlmfa67ddc2004-06-03 03:38:44 +000083
vlm7d398392006-11-21 10:38:50 +000084#include <netinet/in.h> /* for ntohl() */
85#define sys_ntohl(foo) ntohl(foo)
86
vlmb5a69432006-05-02 18:55:41 +000087#endif /* defined(__vxworks) */
88
vlma4294b72004-09-07 07:26:32 +000089#endif /* WIN32 */
vlm6e73a042004-08-11 07:17:22 +000090
vlm8a463242006-09-15 18:52:36 +000091#if __GNUC__ >= 3
92#ifndef GCC_PRINTFLIKE
93#define GCC_PRINTFLIKE(fmt,var) __attribute__((format(printf,fmt,var)))
94#endif
vlmef073172006-10-16 12:01:36 +000095#ifndef GCC_NOTUSED
96#define GCC_NOTUSED __attribute__((unused))
97#endif
vlm8a463242006-09-15 18:52:36 +000098#else
99#ifndef GCC_PRINTFLIKE
100#define GCC_PRINTFLIKE(fmt,var) /* nothing */
101#endif
vlmef073172006-10-16 12:01:36 +0000102#ifndef GCC_NOTUSED
103#define GCC_NOTUSED
104#endif
vlm6e73a042004-08-11 07:17:22 +0000105#endif
106
vlmd97308e2007-06-29 11:38:57 +0000107/* Figure out if thread safety is requested */
vlmbed38dd2007-06-29 12:10:50 +0000108#if !defined(ASN_THREAD_SAFE) && (defined(THREAD_SAFE) || defined(_REENTRANT))
vlmd97308e2007-06-29 11:38:57 +0000109#define ASN_THREAD_SAFE
110#endif /* Thread safety */
111
vlm6e73a042004-08-11 07:17:22 +0000112#ifndef offsetof /* If not defined by <stddef.h> */
vlmfa67ddc2004-06-03 03:38:44 +0000113#define offsetof(s, m) ((ptrdiff_t)&(((s *)0)->m) - (ptrdiff_t)((s *)0))
114#endif /* offsetof */
115
vlmfa67ddc2004-06-03 03:38:44 +0000116#ifndef MIN /* Suitable for comparing primitive types (integers) */
117#if defined(__GNUC__)
118#define MIN(a,b) ({ __typeof a _a = a; __typeof b _b = b; \
119 ((_a)<(_b)?(_a):(_b)); })
120#else /* !__GNUC__ */
121#define MIN(a,b) ((a)<(b)?(a):(b)) /* Unsafe variant */
122#endif /* __GNUC__ */
123#endif /* MIN */
124
vlm9de248e2004-10-20 15:50:55 +0000125#endif /* _ASN_SYSTEM_H_ */