summaryrefslogtreecommitdiff
path: root/shared/external.h
diff options
context:
space:
mode:
Diffstat (limited to 'shared/external.h')
-rw-r--r--shared/external.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/shared/external.h b/shared/external.h
index beba93a..738e460 100644
--- a/shared/external.h
+++ b/shared/external.h
@@ -9,7 +9,8 @@ void *__zmalloc(const char *fn, int line, size_t s) _malloc_ _alloc_(3);
char *__xstrdup(const char *fn, int line, const char *s) _malloc_;
#define xstrndup(s, n) __xstrndup(__func__, __LINE__, s, n)
-char *__xstrndup(const char *fn, int line, const char *s, size_t n) _malloc_ _alloc_(4);
+char *__xstrndup(const char *fn, int line, const char *s, size_t n) _malloc_
+ _alloc_(4);
#define xfree(s) __xfree(__func__, __LINE__, s)
void __xfree(const char *fn, int line, void *ptr);