diff options
author | DJ Delorie <dj@redhat.com> | 2005-06-06 22:13:35 +0000 |
---|---|---|
committer | DJ Delorie <dj@redhat.com> | 2005-06-06 22:13:35 +0000 |
commit | 0b1ecddf68f0d4091ba5f8166ee41432f621e733 (patch) | |
tree | f3a7e31e5f85ecd9f4c2b885b514d51b222092d5 /include | |
parent | 2af5aa67e22b5463a9c73f6a91a21642343a1419 (diff) | |
download | newlib-0b1ecddf68f0d4091ba5f8166ee41432f621e733.zip newlib-0b1ecddf68f0d4091ba5f8166ee41432f621e733.tar.gz newlib-0b1ecddf68f0d4091ba5f8166ee41432f621e733.tar.bz2 |
merge from gcc
Diffstat (limited to 'include')
-rw-r--r-- | include/ChangeLog | 4 | ||||
-rw-r--r-- | include/libiberty.h | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/include/ChangeLog b/include/ChangeLog index 2c105aa..11ef1c8 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,3 +1,7 @@ +2005-06-06 Gabriel Dos Reis <gdr@integrable-solutions.net> + + * libiberty.h (XOBFINISH): New. + 2005-06-03 Alan Modra <amodra@bigpond.net.au> * bfdlink.h (struct bfd_link_callbacks): Add einfo. diff --git a/include/libiberty.h b/include/libiberty.h index a9a75ea..4b0d532 100644 --- a/include/libiberty.h +++ b/include/libiberty.h @@ -326,7 +326,7 @@ extern double physmem_available (void); /* Type-safe obstack allocator. */ #define XOBNEW(O, T) ((T *) obstack_alloc ((O), sizeof (T))) - +#define XOBFINISH(O, T) ((T) obstack_finish ((O))) /* hex character manipulation routines */ |