diff options
Diffstat (limited to 'art_misc.h')
-rw-r--r-- | art_misc.h | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -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 |