gcc/libobjc/objc/deprecated
Nicola Pero d1be5d82e0 In libobjc/:
* objc/deprecated/objc_malloc.h: New file.
        * objc/deprecated/objc_valloc.h: New file.
        * objc/objc-api.h: Include the files instead of defining
        objc_valloc, _objc_malloc() and similar.
        * Makefile.in (OBJC_DEPRECATED_H): Added objc_valloc.h and
        objc_malloc.h.
        * memory.c: Removed the extra layer of indirection of _objc_malloc
        and similar.
        (objc_calloc): Use GC_malloc in the garbage-collected
        implementation as GC_malloc returns memory that is already freed.
        (objc_valloc): Deprecated.

From-SVN: r164224
2010-09-12 01:44:58 +00:00
..
MetaClass.h
objc_error.h In libobjc/: 2010-09-12 00:43:15 +00:00
objc_malloc.h In libobjc/: 2010-09-12 01:44:58 +00:00
objc_unexpected_exception.h
objc_valloc.h In libobjc/: 2010-09-12 01:44:58 +00:00
Object.h
README
STR.h
struct_objc_class.h
struct_objc_protocol.h
struct_objc_selector.h
typedstream.h

This directory contains declarations and features that are deprecated
and that will be removed in future versions of the compiler.

Note that files in this directory are not really usable headers on
their own - they shouldn't be included directly by end users.  They
are header fragments containing deprecated APIs that are still
included (until removed) from the real headers in objc/.

Files in this directory should not #include any other objc header.
Any include that they need should be done in the real objc/ headers
before including these fragments.