change
authorbdemsky <bdemsky>
Fri, 6 Feb 2009 01:55:01 +0000 (01:55 +0000)
committerbdemsky <bdemsky>
Fri, 6 Feb 2009 01:55:01 +0000 (01:55 +0000)
Robust/src/Runtime/runtime.c

index 43db3b57ab2c40fe7504e4248ea2ba1f7ac8ffe6..c28d9cbf42f170f58bcde3e801a43891d7ed47b1 100644 (file)
@@ -200,7 +200,7 @@ struct ArrayObject * allocate_newarray(void * ptr, int type, int length) {
 }
 
 #else
-__attribute__(malloc) void * allocate_new(int type) {
+__attribute__((malloc)) void * allocate_new(int type) {
   struct ___Object___ * v=FREEMALLOC(classsize[type]);
   v->type=type;
 #ifdef OPTIONAL
@@ -211,7 +211,7 @@ __attribute__(malloc) void * allocate_new(int type) {
 
 /* Array allocation function */
 
-__attribute__(malloc) struct ArrayObject * allocate_newarray(int type, int length) {
+__attribute__((malloc)) struct ArrayObject * allocate_newarray(int type, int length) {
   struct ArrayObject * v=FREEMALLOC(sizeof(struct ArrayObject)+length*classsize[type]);
   v->type=type;
   v->___length___=length;
@@ -227,7 +227,7 @@ __attribute__(malloc) struct ArrayObject * allocate_newarray(int type, int lengt
 #ifdef PRECISE_GC
 struct ___String___ * NewString(void * ptr, const char *str,int length) {
 #else
-  __attribute__(malloc) struct ___String___ * NewString(const char *str,int length) {
+  __attribute__((malloc)) struct ___String___ * NewString(const char *str,int length) {
 #endif
   int i;
 #ifdef PRECISE_GC