X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=config.h.bot;fp=config.h.bot;h=0000000000000000000000000000000000000000;hb=f74f5f43b01514e32f51e30015a8c7d5c7dd1521;hp=bb24eb149e3b0d926dfcc8437b6946f60bcf018a;hpb=3b83c93292fbf6c4e859ce513bdf54ad90733f96;p=secnet.git diff --git a/config.h.bot b/config.h.bot deleted file mode 100644 index bb24eb1..0000000 --- a/config.h.bot +++ /dev/null @@ -1,66 +0,0 @@ -/* -*- c -*- */ - -/* These are from config.h.bot, pasted onto the end of config.h.in. */ - -#ifdef HAVE_INTTYPES_H -#include -#else -#ifdef HAVE_STDINT_H -#include -#else -#if SIZEOF_UNSIGNED_LONG_LONG==8 -typedef unsigned long long uint64_t; -typedef long long int64_t; -#elif SIZEOF_UNSIGNED_LONG==8 -typedef unsigned long uint64_t; -typedef long int64_t; -#else -#error I do not know what to use for a uint64_t. -#endif - -/* Give us an unsigned 32-bit data type. */ -#if SIZEOF_UNSIGNED_LONG==4 -typedef unsigned long uint32_t; -typedef long int32_t; -#elif SIZEOF_UNSIGNED_INT==4 -typedef unsigned int uint32_t; -typedef int int32_t; -#else -#error I do not know what to use for a uint32_t. -#endif - -/* An unsigned 16-bit data type. */ -#if SIZEOF_UNSIGNED_INT==2 -typedef unsigned int uint16_t; -typedef int int16_t; -#elif SIZEOF_UNSIGNED_SHORT==2 -typedef unsigned short uint16_t; -typedef short int16_t; -#else -#error I do not know what to use for a uint16_t. -#endif - -/* An unsigned 8-bit data type */ -#if SIZEOF_UNSIGNED_CHAR==1 -typedef unsigned char uint8_t; -#else -#error I do not know what to use for a uint8_t. -#endif -#endif -#endif - -#ifndef HAVE_SNPRINTF -#include -#include -#include "snprintf.h" -#endif - -#ifdef __GNUC__ -#define NORETURN(_x) void _x __attribute__ ((noreturn)) -#define FORMAT(_a,_b,_c) __attribute__ ((format (_a,_b,_c))) -#else -#define NORETURN(_x) _x -#define FORMAT(_a,_b,_c) -#endif - -#endif /* _CONFIG_H */