summaryrefslogtreecommitdiff
path: root/src/ne_alloc.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ne_alloc.h')
-rw-r--r--src/ne_alloc.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ne_alloc.h b/src/ne_alloc.h
index 0322fa7..17eea56 100644
--- a/src/ne_alloc.h
+++ b/src/ne_alloc.h
@@ -43,9 +43,9 @@ void ne_oom_callback(ne_oom_callback_fn callback);
* neon will abort(); calling an OOM callback beforehand if one is
* registered. The C library will only ever return NULL if the
* operating system does not use optimistic memory allocation. */
-void *ne_malloc(size_t size) ne_attribute_malloc;
-void *ne_calloc(size_t size) ne_attribute_malloc;
-void *ne_realloc(void *ptr, size_t s);
+void *ne_malloc(size_t size) ne_attribute_alloc_size(1);
+void *ne_calloc(size_t size) ne_attribute_alloc_size(1);
+void *ne_realloc(void *ptr, size_t s) ne_attribute_alloc_size(2);
char *ne_strdup(const char *s) ne_attribute_malloc;
char *ne_strndup(const char *s, size_t n) ne_attribute_malloc;
#ifdef WIN32