blob: 5a5eb9bfb2afe6741ae0bef85e2101003c285cb3 [file] [log] [blame]
Lev Walkinf15320b2004-06-03 03:38:44 +00001/*-
2 * Copyright (c) 2003, 2004 Lev Walkin <vlm@lionet.info>. All rights reserved.
3 * Redistribution and modifications are permitted subject to BSD license.
4 */
5/*
6 * Miscellaneous system-dependent types.
7 */
Lev Walkindc06f6b2004-10-20 15:50:55 +00008#ifndef _ASN_SYSTEM_H_
9#define _ASN_SYSTEM_H_
Lev Walkinf15320b2004-06-03 03:38:44 +000010
Lev Walkin0ede18c2004-09-07 10:47:39 +000011#ifdef HAVE_CONFIG_H
12#include "config.h"
13#endif
14
Lev Walkina460ba32004-10-20 15:40:04 +000015#include <stdio.h> /* For snprintf(3) */
Lev Walkinf15320b2004-06-03 03:38:44 +000016#include <stdlib.h> /* For *alloc(3) */
17#include <string.h> /* For memcpy(3) */
18#include <sys/types.h> /* For size_t */
19#include <stdarg.h> /* For va_start */
Lev Walkinf15320b2004-06-03 03:38:44 +000020#include <stddef.h> /* for offsetof and ptrdiff_t */
Lev Walkin0ede18c2004-09-07 10:47:39 +000021
Lev Walkin4efbfb72005-02-25 14:20:30 +000022#ifdef WIN32
23
24#define snprintf _snprintf
25#define vsnprintf _vsnprintf
26#define alloca(size) _alloca(size)
27
28#else /* !WIN32 */
29
Lev Walkin0ede18c2004-09-07 10:47:39 +000030#include <inttypes.h> /* C99 specifies this file */
Lev Walkin0ede18c2004-09-07 10:47:39 +000031/*
Lev Walkina460ba32004-10-20 15:40:04 +000032 * 1. Earlier FreeBSD version didn't have <stdint.h>,
Lev Walkin0ede18c2004-09-07 10:47:39 +000033 * but <inttypes.h> was present.
Lev Walkina460ba32004-10-20 15:40:04 +000034 * 2. Sun Solaris requires <alloca.h> for alloca(3),
35 * but does not have <stdint.h>.
Lev Walkin0ede18c2004-09-07 10:47:39 +000036 */
Lev Walkineeab25b2004-10-25 22:58:35 +000037#if (!defined(__FreeBSD__) || !defined(_SYS_INTTYPES_H_))
Lev Walkina460ba32004-10-20 15:40:04 +000038#if defined(sun)
39#include <alloca.h> /* For alloca(3) */
Lev Walkin4efbfb72005-02-25 14:20:30 +000040#include <ieeefp.h> /* for finite(3) */
Lev Walkina460ba32004-10-20 15:40:04 +000041#else
Lev Walkin1ff369a2004-09-07 07:26:32 +000042#include <stdint.h> /* SUSv2+ and C99 specify this file, for uintXX_t */
Lev Walkin4efbfb72005-02-25 14:20:30 +000043#endif /* defined(sun) */
Lev Walkina460ba32004-10-20 15:40:04 +000044#endif
Lev Walkinf15320b2004-06-03 03:38:44 +000045
Lev Walkin1ff369a2004-09-07 07:26:32 +000046#endif /* WIN32 */
Lev Walkin64399722004-08-11 07:17:22 +000047
48#ifndef __GNUC__
49#define __attribute__(ignore)
50#endif
51
52#ifndef offsetof /* If not defined by <stddef.h> */
Lev Walkinf15320b2004-06-03 03:38:44 +000053#define offsetof(s, m) ((ptrdiff_t)&(((s *)0)->m) - (ptrdiff_t)((s *)0))
54#endif /* offsetof */
55
Lev Walkinf15320b2004-06-03 03:38:44 +000056#ifndef MIN /* Suitable for comparing primitive types (integers) */
57#if defined(__GNUC__)
58#define MIN(a,b) ({ __typeof a _a = a; __typeof b _b = b; \
59 ((_a)<(_b)?(_a):(_b)); })
60#else /* !__GNUC__ */
61#define MIN(a,b) ((a)<(b)?(a):(b)) /* Unsafe variant */
62#endif /* __GNUC__ */
63#endif /* MIN */
64
Lev Walkindc06f6b2004-10-20 15:50:55 +000065#endif /* _ASN_SYSTEM_H_ */