1 1.1 agc /* 2 1.1 agc * Copyright 2007 Alistair Crooks. All rights reserved. 3 1.1 agc * 4 1.1 agc * Redistribution and use in source and binary forms, with or without 5 1.1 agc * modification, are permitted provided that the following conditions 6 1.1 agc * are met: 7 1.1 agc * 1. Redistributions of source code must retain the above copyright 8 1.1 agc * notice, this list of conditions and the following disclaimer. 9 1.1 agc * 2. Redistributions in binary form must reproduce the above copyright 10 1.1 agc * notice, this list of conditions and the following disclaimer in the 11 1.1 agc * documentation and/or other materials provided with the distribution. 12 1.1 agc * 3. The name of the author may not be used to endorse or promote 13 1.1 agc * products derived from this software without specific prior written 14 1.1 agc * permission. 15 1.1 agc * 16 1.1 agc * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS 17 1.1 agc * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 18 1.1 agc * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 19 1.1 agc * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY 20 1.1 agc * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 21 1.1 agc * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE 22 1.1 agc * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 23 1.1 agc * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, 24 1.1 agc * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING 25 1.1 agc * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 26 1.1 agc * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 1.1 agc */ 28 1.1 agc #ifndef FREE2NET_H_ 29 1.1 agc #define FREE2NET_H_ 20070828 30 1.1 agc 31 1.1 agc #include <sys/cdefs.h> 32 1.1 agc 33 1.1 agc #ifdef __NetBSD__ 34 1.1 agc /* general portability macros */ 35 1.1 agc #define __FBSDID(x) __RCSID(x) 36 1.2 agc #define __DECONST(t, a) (t) __UNCONST(a) 37 1.1 agc 38 1.1 agc /* this one seems to be missing from ctype.h */ 39 1.1 agc #define ishexnumber(x) isxdigit(x) 40 1.1 agc #endif 41 1.1 agc 42 1.1 agc #endif 43