util: hashtable: make hashing prototypes match
[mesa.git] / src / util / u_dynarray.h
index 57f96ff79c0ea7b9b7e1e8e279c2ceee568d822a..cc316323f2884e96d68c89618f07e620ac082082 100644 (file)
@@ -68,6 +68,12 @@ util_dynarray_fini(struct util_dynarray *buf)
    }
 }
 
+static inline void
+util_dynarray_clear(struct util_dynarray *buf)
+{
+       buf->size = 0;
+}
+
 #define DYN_ARRAY_INITIAL_SIZE 64
 
 /* use util_dynarray_trim to reduce the allocated storage */