summaryrefslogtreecommitdiff
path: root/utils/utils.h
diff options
context:
space:
mode:
authorJames Bursa <james@netsurf-browser.org>2003-01-07 23:15:23 +0000
committerJames Bursa <james@netsurf-browser.org>2003-01-07 23:15:23 +0000
commit405e2321a8ebde4076c675535afc429c23cb9b9a (patch)
treed3424f700018024b71eddf24461ac677b6c00ebc /utils/utils.h
parent1c83fd5d2c28b18c737850150c907cf929724d84 (diff)
downloadnetsurf-405e2321a8ebde4076c675535afc429c23cb9b9a.tar.gz
netsurf-405e2321a8ebde4076c675535afc429c23cb9b9a.tar.bz2
[project @ 2003-01-07 23:15:23 by bursa]
Clean up many compiler warnings. svn path=/import/netsurf/; revision=88
Diffstat (limited to 'utils/utils.h')
-rw-r--r--utils/utils.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/utils/utils.h b/utils/utils.h
index cec81ef4e..c7c608cf2 100644
--- a/utils/utils.h
+++ b/utils/utils.h
@@ -1,5 +1,5 @@
/**
- * $Id: utils.h,v 1.3 2002/08/11 23:04:02 bursa Exp $
+ * $Id: utils.h,v 1.4 2003/01/07 23:15:23 bursa Exp $
*/
#ifndef _NETSURF_RENDER_UTILS_H_
@@ -12,6 +12,7 @@ char * strip(char * const s);
int whitespace(const char * str);
void * xcalloc(const size_t n, const size_t size);
void * xrealloc(void * p, const size_t size);
+void xfree(void* p);
char * xstrdup(const char * const s);
char * load(const char * const path);
char * squash_whitespace(const char * s);