summaryrefslogtreecommitdiffstats
path: root/art_misc.h
diff options
context:
space:
mode:
Diffstat (limited to 'art_misc.h')
-rw-r--r--art_misc.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/art_misc.h b/art_misc.h
index 9aff741..a4d6f62 100644
--- a/art_misc.h
+++ b/art_misc.h
@@ -37,9 +37,9 @@
#ifdef __cplusplus
extern "C" {
#endif
-void *art_alloc(size_t size);
-void art_free(void *ptr);
-void *art_realloc(void *ptr, size_t size);
+LIBART_EXPORT void *art_alloc(size_t size);
+LIBART_EXPORT void art_free(void *ptr);
+LIBART_EXPORT void *art_realloc(void *ptr, size_t size);
#ifdef __cplusplus
}
#endif /* __cplusplus */
@@ -84,13 +84,13 @@ typedef int art_boolean;
extern "C" {
#endif
-void ART_GNUC_NORETURN
+LIBART_EXPORT void ART_GNUC_NORETURN
art_die (const char *fmt, ...) ART_GNUC_PRINTF (1, 2);
-void
+LIBART_EXPORT void
art_warn (const char *fmt, ...) ART_GNUC_PRINTF (1, 2);
-void
+LIBART_EXPORT void
art_dprint (const char *fmt, ...) ART_GNUC_PRINTF (1, 2);
#ifdef __cplusplus