diff options
author | nicola <nicola@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-11-18 02:11:33 +0000 |
---|---|---|
committer | nicola <nicola@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-11-18 02:11:33 +0000 |
commit | 07ee25f6d2982042a94634260157fc07c6fb0603 (patch) | |
tree | 57821e4e443b4eaecc9afef718a65395130a251e /libobjc | |
parent | 52f48b0346ca8ac005e854c0f3129d66d72dfda7 (diff) | |
download | gcc-07ee25f6d2982042a94634260157fc07c6fb0603.tar.gz |
2010-11-18 Nicola Pero <nicola.pero@meta-innovation.com>
* ivars.c: Include stdlib.h.
* protocols.c: Same change.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@166895 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libobjc')
-rw-r--r-- | libobjc/ChangeLog | 5 | ||||
-rw-r--r-- | libobjc/ivars.c | 3 | ||||
-rw-r--r-- | libobjc/protocols.c | 4 |
3 files changed, 10 insertions, 2 deletions
diff --git a/libobjc/ChangeLog b/libobjc/ChangeLog index 2c79b2da0c8..02be0ebd0e8 100644 --- a/libobjc/ChangeLog +++ b/libobjc/ChangeLog @@ -1,3 +1,8 @@ +2010-11-18 Nicola Pero <nicola.pero@meta-innovation.com> + + * ivars.c: Include stdlib.h. + * protocols.c: Same change. + 2010-10-24 Nicola Pero <nicola.pero@meta-innovation.com> * Makefile.in (OBJC_SOURCE_FILES): Added accessors.m. diff --git a/libobjc/ivars.c b/libobjc/ivars.c index 8d5f4abdd39..69524bfd1dd 100644 --- a/libobjc/ivars.c +++ b/libobjc/ivars.c @@ -27,7 +27,8 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see #include "objc-private/module-abi-8.h" /* For runtime structures */ #include "objc/thr.h" #include "objc-private/runtime.h" /* the kitchen sink */ -#include <string.h> /* For strcmp */ +#include <string.h> /* For strcmp. */ +#include <stdlib.h> /* For malloc. */ struct objc_ivar * class_getInstanceVariable (Class class_, const char *name) diff --git a/libobjc/protocols.c b/libobjc/protocols.c index 421e566e912..05a750758c7 100644 --- a/libobjc/protocols.c +++ b/libobjc/protocols.c @@ -28,7 +28,9 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see #include "objc/thr.h" #include "objc-private/runtime.h" /* the kitchen sink */ #include "objc-private/hash.h" /* For the hash table of protocols. */ -#include "objc-private/protocols.h" /* For __objc_protocols_init() and __objc_protocols_add_protocol() */ +#include "objc-private/protocols.h" /* For __objc_protocols_init() and + __objc_protocols_add_protocol(). */ +#include <stdlib.h> /* For malloc. */ /* This is a table that maps a name to a Protocol instance with that name. Because there may be multiple Protocol instances with the |