From 80485a6d56faf51d82363e3588aa18db2cf095ba Mon Sep 17 00:00:00 2001 From: Richard Stallman Date: Tue, 5 Jan 1993 19:55:35 +0000 Subject: [PATCH] Rename decls for vars renamed to _objc_alloc, _objc_dealloc, _objc_realloc, _objc_copy, _objc_error. From-SVN: r3101 --- gcc/objc/objc.h | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/gcc/objc/objc.h b/gcc/objc/objc.h index 2d3ad76a278..f4104091381 100644 --- a/gcc/objc/objc.h +++ b/gcc/objc/objc.h @@ -316,33 +316,33 @@ typedef struct objc_super { } Super, *Super_t; /* - * _alloc points to the function, called through class_createInstance, used - * to allocate memory for new instances. + * _objc_alloc points to the function, called through class_createInstance, + * used to allocate memory for new instances. */ -extern id (*_alloc)(Class_t); +extern id (*_objc_alloc)(Class_t); /* - * _dealloc points to the function, called through object_dispose, used to + * _objc_dealloc points to the function, called through object_dispose, used to * free instances. */ -extern id (*_dealloc)(id); +extern id (*_objc_dealloc)(id); /* - * _realloc points to the function, called through object_realloc, used to + * _objc_realloc points to the function, called through object_realloc, used to * reallocate memory for an object */ -extern id (*_realloc)(id, unsigned int); +extern id (*_objc_realloc)(id, unsigned int); /* - * _copy points to the function, called through object_copy, used to create - * an exact copy of an object. + * _objc_copy points to the function, called through object_copy, + * used to create an exact copy of an object. */ -extern id (*_copy)(id); +extern id (*_objc_copy)(id); /* - * _error points to the function that the run-time system calls in response - * to an error. By default, it prints formatted error messages to the + * _objc_error points to the function that the run-time system calls + * to handle an error. By default, it prints formatted error messages to the * standard error stream and calls abort to produce a core file. */ -extern void (*_error)(id object, const char *fmt, va_list ap); +extern void (*_objc_error)(id object, const char *fmt, va_list ap); #ifdef __cplusplus -- 2.30.2