diff options
author | Nicola Pero <nicola.pero@meta-innovation.com> | 2010-12-18 12:22:59 +0000 |
---|---|---|
committer | Nicola Pero <nicola@gcc.gnu.org> | 2010-12-18 12:22:59 +0000 |
commit | 575584a982dbf3192d20b2201420721df216277d (patch) | |
tree | d7fb79bd88b2a0bfec5d8db79632971970a6eea6 /libobjc/memory.c | |
parent | f21fe68470f435870bcc4f0ff1bdc52f1c013103 (diff) | |
download | gcc-575584a982dbf3192d20b2201420721df216277d.zip gcc-575584a982dbf3192d20b2201420721df216277d.tar.gz gcc-575584a982dbf3192d20b2201420721df216277d.tar.bz2 |
In libobjc/: 2010-12-18 Nicola Pero <nicola.pero@meta-innovation.com>
In libobjc/:
2010-12-18 Nicola Pero <nicola.pero@meta-innovation.com>
* class.c: Tidied up comments and indentation. No code changes.
* error.c: Same.
* exception.c: Same.
* init.c: Same.
* ivars.c: Same.
* memory.c: Same.
* objc-foreach.c: Same.
* objc-sync.c: Same.
* objects.c: Same.
* protocols.c: Same.
* sarray.c: Same.
* thr.c: Same.
From-SVN: r168022
Diffstat (limited to 'libobjc/memory.c')
-rw-r--r-- | libobjc/memory.c | 18 |
1 files changed, 6 insertions, 12 deletions
diff --git a/libobjc/memory.c b/libobjc/memory.c index 458d256..b0519fc 100644 --- a/libobjc/memory.c +++ b/libobjc/memory.c @@ -24,11 +24,9 @@ a copy of the GCC Runtime Library Exception along with this program; see the files COPYING3 and COPYING.RUNTIME respectively. If not, see <http://www.gnu.org/licenses/>. */ -/* - This file includes the standard functions for memory allocation and - disposal. Users should use these functions in their ObjC programs - so that they work properly with garbage collectors. -*/ +/* This file includes the standard functions for memory allocation and + disposal. Users should use these functions in their ObjC programs + so that they work properly with garbage collectors. */ /* TODO: Turn these into macros or inline functions. */ @@ -37,8 +35,7 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see /* __USE_FIXED_PROTOTYPES__ used to be required to get prototypes for malloc, free, etc. on some platforms. It is unclear if we still - need it, but it can't hurt. -*/ + need it, but it can't hurt. */ #define __USE_FIXED_PROTOTYPES__ #include <stdlib.h> @@ -163,11 +160,8 @@ objc_valloc (size_t size) #endif /* !OBJC_WITH_GC */ -/* - Hook functions for memory allocation and disposal. Deprecated - and currently unused. -*/ - +/* Hook functions for memory allocation and disposal. Deprecated and + currently unused. */ void *(*_objc_malloc) (size_t) = malloc; void *(*_objc_atomic_malloc) (size_t) = malloc; void *(*_objc_valloc) (size_t) = malloc; |