From: Dennis Glatting Date: Fri, 29 Nov 1991 00:24:14 +0000 (+0000) Subject: many changes including posing... X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3f2f181378f50ec0b0ca9a746448493b14d3f17b;p=gcc.git many changes including posing... many changes including posing, things to make the compiler happier, structure changes, and things to make it play better. From-SVN: r79 --- diff --git a/gcc/objc/objc.h b/gcc/objc/objc.h index 21124b18996..3d32425b46a 100644 --- a/gcc/objc/objc.h +++ b/gcc/objc/objc.h @@ -19,10 +19,14 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * - $Header: /usr/user/dennis_glatting/ObjC/c-runtime/include/RCS/ObjC.h,v 0.3 1991/11/16 15:57:35 dennisg Exp dennisg $ + $Header: /usr/user/dennis_glatting/ObjC/c-runtime/include/RCS/ObjC.h,v 0.4 1991/11/19 12:37:49 dennisg Exp dennisg $ $Author: dennisg $ - $Date: 1991/11/16 15:57:35 $ + $Date: 1991/11/19 12:37:49 $ $Log: ObjC.h,v $ + * Revision 0.4 1991/11/19 12:37:49 dennisg + * changed typedef and struct decls. + * the run-time was changed and those decls changed too. + * * Revision 0.3 1991/11/16 15:57:35 dennisg * changed the defs for class structures for new implementation of run-time. * changed def of SEL back to its original type. @@ -71,7 +75,11 @@ typedef char BOOL; class hierarchy using strcmp() to locate the method. */ +#if 0 typedef struct objc_selector* SEL; +#else +typedef void* SEL; +#endif /* ObjC uses this typedef for untyped instances. */