aboutsummaryrefslogtreecommitdiff
path: root/libobjc/objc/deprecated/struct_objc_ivar.h
diff options
context:
space:
mode:
Diffstat (limited to 'libobjc/objc/deprecated/struct_objc_ivar.h')
-rw-r--r--libobjc/objc/deprecated/struct_objc_ivar.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/libobjc/objc/deprecated/struct_objc_ivar.h b/libobjc/objc/deprecated/struct_objc_ivar.h
deleted file mode 100644
index 57170ad1160..00000000000
--- a/libobjc/objc/deprecated/struct_objc_ivar.h
+++ /dev/null
@@ -1,15 +0,0 @@
-/*
-** The compiler generates one of these structures for a class that has
-** instance variables defined in its specification.
-*/
-typedef struct objc_ivar {
- const char* ivar_name; /* Name of the instance
- variable as entered in the
- class definition. */
- const char* ivar_type; /* Description of the Ivar's
- type. Useful for
- debuggers. */
- int ivar_offset; /* Byte offset from the base
- address of the instance
- structure to the variable. */
-} *Ivar_t;