From 12c3ff3d621d9e9eed6283b0730f297cc157b945 Mon Sep 17 00:00:00 2001 From: James Bursa Date: Sun, 11 Aug 2002 23:04:02 +0000 Subject: [project @ 2002-08-11 23:04:02 by bursa] [monkeyson] Multiple-include guards. svn path=/import/netsurf/; revision=30 --- render/layout.h | 6 +++++- utils/utils.h | 8 +++++++- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/render/layout.h b/render/layout.h index a580a94f9..cae352b1a 100644 --- a/render/layout.h +++ b/render/layout.h @@ -1,10 +1,14 @@ /** - * $Id: layout.h,v 1.2 2002/05/27 23:21:11 bursa Exp $ + * $Id: layout.h,v 1.3 2002/08/11 23:04:02 bursa Exp $ */ +#ifndef _NETSURF_RENDER_LAYOUT_H_ +#define _NETSURF_RENDER_LAYOUT_H_ + /** * interface */ void layout_document(struct box * box, unsigned long width); +#endif diff --git a/utils/utils.h b/utils/utils.h index 445c7167e..cec81ef4e 100644 --- a/utils/utils.h +++ b/utils/utils.h @@ -1,7 +1,12 @@ /** - * $Id: utils.h,v 1.2 2002/05/21 21:27:29 bursa Exp $ + * $Id: utils.h,v 1.3 2002/08/11 23:04:02 bursa Exp $ */ +#ifndef _NETSURF_RENDER_UTILS_H_ +#define _NETSURF_RENDER_UTILS_H_ + +#include + void die(const char * const error); char * strip(char * const s); int whitespace(const char * str); @@ -11,3 +16,4 @@ char * xstrdup(const char * const s); char * load(const char * const path); char * squash_whitespace(const char * s); +#endif -- cgit v1.2.3