mirror of
https://github.com/beard7n/bsdports.git
synced 2026-04-13 12:01:19 +02:00
15 lines
334 B
C
15 lines
334 B
C
--- ./art_misc.h.orig 2009-04-18 15:29:25.000000000 +0300
|
|
+++ ./art_misc.h 2014-12-27 03:00:42.000000000 +0200
|
|
@@ -93,6 +93,11 @@
|
|
void
|
|
art_dprint (const char *fmt, ...) ART_GNUC_PRINTF (1, 2);
|
|
|
|
+void *art_alloc(size_t size);
|
|
+void art_free(void *ptr);
|
|
+void *art_realloc(void *ptr, size_t size);
|
|
+
|
|
+
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|