#define obstack_chunk_free free
#include <obstack.h>
+/* String-grow: append Str to Obs. */
+
#define obstack_sgrow(Obs, Str) \
obstack_grow (Obs, Str, strlen (Str))
} while (0)
+/* Append the ending 0, finish Obs, and return the string. */
+
+# define obstack_finish0(Obs) \
+ (obstack_1grow (Obs, '\0'), (char *) obstack_finish (Obs))
+