diff options
author | Nicola Pero <nicola.pero@meta-innovation.com> | 2010-12-22 00:05:57 +0000 |
---|---|---|
committer | Nicola Pero <nicola@gcc.gnu.org> | 2010-12-22 00:05:57 +0000 |
commit | 8637d320f1a1806dd9452c280a69f7daf3547fed (patch) | |
tree | ea41a9fe01c88393863408b47a7ab09d59036920 /libobjc/objc-private/hash.h | |
parent | 0cc3d14ec1545d5feb65396bc7915e1795fb2894 (diff) | |
download | gcc-8637d320f1a1806dd9452c280a69f7daf3547fed.zip gcc-8637d320f1a1806dd9452c280a69f7daf3547fed.tar.gz gcc-8637d320f1a1806dd9452c280a69f7daf3547fed.tar.bz2 |
In libobjc/: 2010-12-22 Nicola Pero <nicola.pero@meta-innovation.com>
In libobjc/:
2010-12-22 Nicola Pero <nicola.pero@meta-innovation.com>
* objc-private/accessors.h: Removed 'extern "C"' guards. This
file is never compiled with C++.
* objc-private/hash.h: Same change.
* objc-private/objc-list.h: Same change.
* objc-private/objc-sync.h: Same change.
* objc-private/protocols.h: Same change.
* objc-private/runtime.h: Same change.
* objc-private/sarray.h: Same change.
* objc-private/selector.h: Same change.
From-SVN: r168149
Diffstat (limited to 'libobjc/objc-private/hash.h')
-rw-r--r-- | libobjc/objc-private/hash.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/libobjc/objc-private/hash.h b/libobjc/objc-private/hash.h index ba4c494..c330d61 100644 --- a/libobjc/objc-private/hash.h +++ b/libobjc/objc-private/hash.h @@ -30,10 +30,6 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see #include <stddef.h> #include <string.h> -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - /* * This data structure is used to hold items * stored in a hash table. Each node holds @@ -202,10 +198,4 @@ objc_compare_strings (const void *k1, const void *k2) return ! strcmp ((const char *) k1, (const char *) k2); } - -#ifdef __cplusplus -} -#endif /* __cplusplus */ - - #endif /* not __hash_INCLUDE_GNU */ |