aboutsummaryrefslogtreecommitdiff
path: root/libobjc/objc/objc-exception.h
diff options
context:
space:
mode:
authorNicola Pero <nicola.pero@meta-innovation.com>2010-09-10 09:56:40 +0000
committerNicola Pero <nicola@gcc.gnu.org>2010-09-10 09:56:40 +0000
commite976a775e259c5a85907a4b4e9a2b707c7ce9cca (patch)
treeaecc8134138b797706917530127f1a76bf0da100 /libobjc/objc/objc-exception.h
parent1c732eb7229d03addf86b550c8e8c0123d98d729 (diff)
downloadgcc-e976a775e259c5a85907a4b4e9a2b707c7ce9cca.zip
gcc-e976a775e259c5a85907a4b4e9a2b707c7ce9cca.tar.gz
gcc-e976a775e259c5a85907a4b4e9a2b707c7ce9cca.tar.bz2
deprecated: New directory.
* libobjc/objc/deprecated: New directory. * libobjc/objc/deprecated/README: New file. * libobjc/objc/README: New file. * libobjc/objc/typedstream.h: Moved into objc/deprecated/typedstream.h; objc/typedstream.h replaced with a placeholder including the file from the deprecated/ directory. * libobjc/objc/deprecated/objc-unexpected-exception.h: New file with the definition of _objc_unexpected_exception. * libobjc/objc/objc-api.h: Include deprecated/objc-unexcepted-exception.h instead of defining _objc_unexpected_exception. * libobjc/objc/deprecated/Object.h: New file with the deprecated Object methods in a 'Deprecated' category. * libobjc/objc/Object.h Include deprecated/Object.h instead of defining the deprecated methods. * libobjc/Object.m: Moved deprecated methods into 'Deprecated' category. * libobjc/objc-private: New directory. * libobjc/objc-private/README: New file. * libobjc/Makefile.in (OBJC_DEPRECATED_H): New variable. (install-headers): Create installation directory for OBJC_DEPRECATED_H headers, and install them. From-SVN: r164153
Diffstat (limited to 'libobjc/objc/objc-exception.h')
-rw-r--r--libobjc/objc/objc-exception.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libobjc/objc/objc-exception.h b/libobjc/objc/objc-exception.h
index e12ff3a..715152d 100644
--- a/libobjc/objc/objc-exception.h
+++ b/libobjc/objc/objc-exception.h
@@ -26,7 +26,7 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
#ifndef __objc_exception_INCLUDE_GNU
#define __objc_exception_INCLUDE_GNU
-#include <objc/objc.h>
+#include "objc.h"
#ifdef __cplusplus
extern "C" {
@@ -68,7 +68,7 @@ void objc_exception_throw (id exception);
exception handling. They are not thread safe and should be called
during the program initialization before threads are started. They
are mostly reserved for "Foundation" libraries; in the case of
- GNUstep, gnustep-base may be using these functions to improve the
+ GNUstep, GNUstep Base may be using these functions to improve the
standard exception handling. You probably shouldn't use these
functions unless you are writing your own Foundation library.
*/