summaryrefslogtreecommitdiff
path: root/libobjc/memory.c
diff options
context:
space:
mode:
Diffstat (limited to 'libobjc/memory.c')
-rw-r--r--libobjc/memory.c18
1 files changed, 6 insertions, 12 deletions
diff --git a/libobjc/memory.c b/libobjc/memory.c
index 458d2566fcb..b0519fc87a1 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;