* lib/filenamecat.h, lib/malloca.h, lib/modechange.h:
* lib/mountlist.h, lib/pagealign_alloc.h, lib/quotearg.h:
* lib/readutmp.h, lib/savedir.h, lib/sh-quote.h, lib/system-quote.h:
+ * lib/trim.h:
Add malloc-related attributes and include stdlib.h as needed.
* lib/dfa.c: Include verify.h.
(assume_nonnull): New macro.
/* Written by Davide Angelocola <davide.angelocola@gmail.com> */
+#include <stdlib.h>
+
/* Trim mode. */
#define TRIM_TRAILING 0
#define TRIM_LEADING 1
/* Removes leading whitespaces. */
#define trim_leading(s) trim2(s, TRIM_LEADING)
-char *trim2 (const char *, int);
+char *trim2 (const char *, int)
+ _GL_ATTRIBUTE_MALLOC _GL_ATTRIBUTE_DEALLOC_FREE
+ _GL_ATTRIBUTE_RETURNS_NONNULL;