From e0679bb50a67fb96f6f0b43778e893971e1139f9 Mon Sep 17 00:00:00 2001 From: Reuben Thomas Date: Fri, 14 Dec 2007 00:06:45 +0000 Subject: Move last header plp_inttypes.h out of include and into lib. Remove RCS Ids from Makefile.am's so that checking in a Makefile.am doesn't cause automake to be run. --- lib/Makefile.am | 2 -- lib/plp_inttypes.h | 26 ++++++++++++++++++++++++++ 2 files changed, 26 insertions(+), 2 deletions(-) create mode 100644 lib/plp_inttypes.h (limited to 'lib') diff --git a/lib/Makefile.am b/lib/Makefile.am index af857cd..35cbb46 100644 --- a/lib/Makefile.am +++ b/lib/Makefile.am @@ -1,5 +1,3 @@ -# $Id$ -# INCLUDES = -I$(top_srcdir)/intl AM_CFLAGS = $(THREADED_CFLAGS) AM_CXXFLAGS = $(THREADED_CXXFLAGS) diff --git a/lib/plp_inttypes.h b/lib/plp_inttypes.h new file mode 100644 index 0000000..acfa7b8 --- /dev/null +++ b/lib/plp_inttypes.h @@ -0,0 +1,26 @@ +#ifndef _INTTYPES_H_ +#define _INTTYPES_H_ + +#ifdef HAVE_CONFIG_H +#include +#endif + +#include + +#ifdef HAVE_STDINT_H +#include +#endif + +#ifdef HAVE_SYS_INT_TYPES_H +#include +#endif + +#ifndef GNU_INTTYPES +typedef uint8_t u_int8_t; +typedef uint16_t u_int16_t; +typedef uint32_t u_int32_t; +typedef uint64_t u_int64_t; +typedef int64_t s_int64_t; +#endif // GNU_INTTYPES + +#endif // _INTTYPES_H_ -- cgit v1.2.3