summary refs log tree commit diff
path: root/zone.h
diff options
context:
space:
mode:
Diffstat (limited to 'zone.h')
-rw-r--r--zone.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/zone.h b/zone.h
index 71ad926..8199bda 100644
--- a/zone.h
+++ b/zone.h
@@ -21,7 +21,7 @@ void zn_clear(Zone *z);
 
 void *zn_alloc(Zone *z, size_t n);
 void *zn_zf_alloc(Zone *z, ZoneFrame **zf, size_t n);
-void *zn_zf_realloc(Zone *z, ZoneFrame **zf, void *ptr, size_t oldsz, size-t newsz);
+void *zn_zf_realloc(Zone *z, ZoneFrame **zf, void *ptr, size_t oldsz, size_t newsz);
 char *zn_strdup(Zone *z, const char *s);
 
 #ifdef ZONE_IMPL