diff options
author | Ziemowit Laski <zlaski@apple.com> | 2004-08-13 02:06:37 +0000 |
---|---|---|
committer | Ziemowit Laski <zlaski@gcc.gnu.org> | 2004-08-13 02:06:37 +0000 |
commit | 1a6213c3deb341d45d9ad004a485deea000ff476 (patch) | |
tree | 1aa9b1706d5c75818c3e0396c44b303b7b75baaa /libobjc/objc/hash.h | |
parent | ea3d83a77f78bb400f9406c0a5fcbd89307859fa (diff) | |
download | gcc-1a6213c3deb341d45d9ad004a485deea000ff476.zip gcc-1a6213c3deb341d45d9ad004a485deea000ff476.tar.gz gcc-1a6213c3deb341d45d9ad004a485deea000ff476.tar.bz2 |
NXConstStr.h: Update copyright date...
2004-08-12 Ziemowit Laski <zlaski@apple.com>
* objc/NXConstStr.h: Update copyright date; bracket with
'extern "C"' for C++ use; make include syntax consistent
by using <...> instead of "..."; hoist <objc/...> includes
above the 'extern "C"' block.
* objc/Object.h: Likewise.
* objc/Protocol.h: Likewise.
* objc/encoding.h: Likewise.
* objc/hash.h: Likewise.
* objc/runtime.h: Likewise.
* objc/sarray.h: Likewise.
* objc/thr.h: Likewise.
* objc/typedstream.h: Likewise.
* objc/objc-api.h: Add 'extern "C"' block for C++ use.
(objc_static_instances): For C++ case, do away with
zero-sized array.
(objc_method): Hoist definition to file scope.
(_objc_load_callback, _objc_object_alloc, class_get_class_method,
class_get_instance_method, class_create_instance,
class_get_class_name, class_get_instance_size,
class_get_meta_class, class_get_super_class, class_get_version,
class_is_class, class_is_meta_class, class_set_version,
class_get_gc_object_type, class_ivar_set_gcinvisible,
get_imp): Rename 'class' parameter to '_class'.
* objc/objc-list.h: Add 'extern "C"' block for C++ use.
* objc/objc.h: Update copyright date.
(arglist_t): Provide a union tag.
From-SVN: r85927
Diffstat (limited to 'libobjc/objc/hash.h')
-rw-r--r-- | libobjc/objc/hash.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libobjc/objc/hash.h b/libobjc/objc/hash.h index 47715af..91a5eba 100644 --- a/libobjc/objc/hash.h +++ b/libobjc/objc/hash.h @@ -1,5 +1,5 @@ /* Hash tables for Objective C method dispatch. - Copyright (C) 1993, 1995, 1996 Free Software Foundation, Inc. + Copyright (C) 1993, 1995, 1996, 2004 Free Software Foundation, Inc. This file is part of GCC. @@ -28,14 +28,14 @@ Boston, MA 02111-1307, USA. */ #ifndef __hash_INCLUDE_GNU #define __hash_INCLUDE_GNU -#include <stddef.h> -#include <string.h> #include <objc/objc.h> #ifdef __cplusplus extern "C" { #endif /* __cplusplus */ +#include <stddef.h> +#include <string.h> /* * This data structure is used to hold items |