summaryrefslogtreecommitdiffstats
path: root/gnulib-local/lib/obstack.c.diff
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2006-10-23 20:58:24 +0000
committerBruno Haible <bruno@clisp.org>2009-06-23 12:14:12 +0200
commit330f52ff6eda0edc9bb3b2103e8e11cffa83317c (patch)
tree073a0c8f8c7ed106b8d298ccf689c60b9cef29b8 /gnulib-local/lib/obstack.c.diff
parente1c0750638096b4962987760137a4267f7418cc5 (diff)
downloadexternal_gettext-330f52ff6eda0edc9bb3b2103e8e11cffa83317c.zip
external_gettext-330f52ff6eda0edc9bb3b2103e8e11cffa83317c.tar.gz
external_gettext-330f52ff6eda0edc9bb3b2103e8e11cffa83317c.tar.bz2
Moved obstack_free workaround to gnulib.
Diffstat (limited to 'gnulib-local/lib/obstack.c.diff')
-rw-r--r--gnulib-local/lib/obstack.c.diff29
1 files changed, 0 insertions, 29 deletions
diff --git a/gnulib-local/lib/obstack.c.diff b/gnulib-local/lib/obstack.c.diff
deleted file mode 100644
index d62f2b9..0000000
--- a/gnulib-local/lib/obstack.c.diff
+++ /dev/null
@@ -1,29 +0,0 @@
-*** obstack.c 2006-09-19 00:51:16.000000000 +0200
---- obstack.c 2006-10-21 02:57:17.000000000 +0200
-***************
-*** 342,348 ****
- # undef obstack_free
-
- void
-! obstack_free (struct obstack *h, void *obj)
- {
- register struct _obstack_chunk *lp; /* below addr of any objects in this chunk */
- register struct _obstack_chunk *plp; /* point to previous chunk if any */
---- 342,348 ----
- # undef obstack_free
-
- void
-! _obstack_free (struct obstack *h, void *obj)
- {
- register struct _obstack_chunk *lp; /* below addr of any objects in this chunk */
- register struct _obstack_chunk *plp; /* point to previous chunk if any */
-***************
-*** 372,377 ****
---- 372,378 ----
- }
-
- # ifdef _LIBC
-+ # undef _obstack_free
- /* Older versions of libc used a function _obstack_free intended to be
- called by non-GCC compilers. */
- strong_alias (obstack_free, _obstack_free)