summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--render/layout.h6
-rw-r--r--utils/utils.h8
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 <stdlib.h>
+
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