diff options
author | Dennis Glatting <dennisg@gnu.org> | 1991-11-29 00:24:14 +0000 |
---|---|---|
committer | Dennis Glatting <dennisg@gnu.org> | 1991-11-29 00:24:14 +0000 |
commit | 3f2f181378f50ec0b0ca9a746448493b14d3f17b (patch) | |
tree | 53664fe783eca3c700a1d7df96d3fdd9736f65db /gcc | |
parent | 1b6aa90b52b22365274f0d6c287d00f01754c6e9 (diff) | |
download | gcc-3f2f181378f50ec0b0ca9a746448493b14d3f17b.zip gcc-3f2f181378f50ec0b0ca9a746448493b14d3f17b.tar.gz gcc-3f2f181378f50ec0b0ca9a746448493b14d3f17b.tar.bz2 |
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
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/objc/objc.h | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/gcc/objc/objc.h b/gcc/objc/objc.h index 21124b1..3d32425 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. */ |