From 8a64e1c730c37469c077e20a8fbfd0c1f325e337 Mon Sep 17 00:00:00 2001 From: sam Date: Thu, 28 Aug 2008 20:38:46 +0000 Subject: [PATCH] * common.h: protect common.h against multiple inclusion. git-svn-id: file:///srv/caca.zoy.org/var/lib/svn/libpipi/trunk@2792 92316355-f0b4-4df1-b90c-862c8a59935f --- common.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/common.h b/common.h index 4769102..237ced4 100644 --- a/common.h +++ b/common.h @@ -17,6 +17,9 @@ * function prototypes that are sometimes missing. */ +#ifndef __COMMON_H__ +#define __COMMON_H__ + /* C99 types */ #if defined HAVE_INTTYPES_H && !defined __KERNEL__ # include @@ -78,3 +81,5 @@ static inline uint32_t hton32(uint32_t x) } #endif +#endif /* __COMMON_H__ */ +