blob: 4626532b0137dbc1a7ea4c390780e07bd13a2af7 [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
22#include <inttypes.h> /* C99 specifies this file */
23
Lev Walkina460ba32004-10-20 15:40:04 +000024#if defined(sun)
25#include <ieeefp.h> /* for finite(3) */
26#endif
27
Lev Walkin0ede18c2004-09-07 10:47:39 +000028/*
Lev Walkina460ba32004-10-20 15:40:04 +000029 * 1. Earlier FreeBSD version didn't have <stdint.h>,
Lev Walkin0ede18c2004-09-07 10:47:39 +000030 * but <inttypes.h> was present.
Lev Walkina460ba32004-10-20 15:40:04 +000031 * 2. Sun Solaris requires <alloca.h> for alloca(3),
32 * but does not have <stdint.h>.
Lev Walkin0ede18c2004-09-07 10:47:39 +000033 */
Lev Walkineeab25b2004-10-25 22:58:35 +000034#if (!defined(__FreeBSD__) || !defined(_SYS_INTTYPES_H_))
Lev Walkina460ba32004-10-20 15:40:04 +000035#if defined(sun)
36#include <alloca.h> /* For alloca(3) */
37#else
Lev Walkin1ff369a2004-09-07 07:26:32 +000038#include <stdint.h> /* SUSv2+ and C99 specify this file, for uintXX_t */
Lev Walkin0ede18c2004-09-07 10:47:39 +000039#endif
Lev Walkina460ba32004-10-20 15:40:04 +000040#endif
Lev Walkinf15320b2004-06-03 03:38:44 +000041
Lev Walkin1ff369a2004-09-07 07:26:32 +000042#ifdef WIN32
Lev Walkin7a5e3022004-08-11 08:32:04 +000043#define snprintf _snprintf
44#define vsnprintf _vsnprintf
Lev Walkin64399722004-08-11 07:17:22 +000045#define alloca(size) _alloca(size)
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_ */