diff options
author | krab <krab@138bc75d-0d04-0410-961f-82ee72b054a4> | 1993-04-26 07:39:17 +0000 |
---|---|---|
committer | krab <krab@138bc75d-0d04-0410-961f-82ee72b054a4> | 1993-04-26 07:39:17 +0000 |
commit | 840df005d4473870c7167a0c901f5180ce3206d1 (patch) | |
tree | 58ed191ab955a693cdef4994d8952f3e7dc1bbd2 /gcc/objc/objc-api.h | |
parent | 0492f90022f8072e01b22bd3b7c011c16719c7e7 (diff) | |
download | gcc-840df005d4473870c7167a0c901f5180ce3206d1.tar.gz |
Take out archiving for alpha
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@4230 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/objc/objc-api.h')
-rw-r--r-- | gcc/objc/objc-api.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/gcc/objc/objc-api.h b/gcc/objc/objc-api.h index 3b1ca4e1e77..f407be03c74 100644 --- a/gcc/objc/objc-api.h +++ b/gcc/objc/objc-api.h @@ -207,7 +207,8 @@ object_get_meta_class(id object) } static inline Class_t -object_get_super_class(id object) +object_get_super_class +(id object) { return ((object!=nil)?(CLS_ISCLASS(object->class_pointer) ?object->class_pointer->super_class @@ -235,8 +236,11 @@ object_is_meta_class(id object) return CLS_ISMETA((Class_t)object); } + /* Archiving stuff */ +#ifndef __alpha__ + typedef int (*objc_typed_read_func)(void*, char*, int); typedef int (*objc_typed_write_func)(void*, const char*, int); typedef int (*objc_typed_flush_func)(void*); @@ -332,5 +336,5 @@ void objc_close_typed_stream (TypedStream* stream); BOOL objc_end_of_typed_stream (TypedStream* stream); void objc_flush_typed_stream (TypedStream* stream); - +#endif /* __alpha__ */ #endif /* not __objc_api_INCLUDE_GNU */ |