obstack.c: alias obstack_free to _obstack_free

closes #6
This commit is contained in:
John Zimmermann 2022-03-18 00:18:19 +01:00
parent d0493f4726
commit f4385255be

View file

@ -294,6 +294,8 @@ _obstack_free (struct obstack *h, void *obj)
abort ();
}
extern __typeof(_obstack_free) obstack_free __attribute__((alias("_obstack_free")));
_OBSTACK_SIZE_T
_obstack_memory_used (struct obstack *h)
{