aboutsummaryrefslogtreecommitdiff
path: root/libobjc/objc/deprecated/objc_msg_sendv.h
diff options
context:
space:
mode:
Diffstat (limited to 'libobjc/objc/deprecated/objc_msg_sendv.h')
-rw-r--r--libobjc/objc/deprecated/objc_msg_sendv.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/libobjc/objc/deprecated/objc_msg_sendv.h b/libobjc/objc/deprecated/objc_msg_sendv.h
deleted file mode 100644
index 825d9a7..0000000
--- a/libobjc/objc/deprecated/objc_msg_sendv.h
+++ /dev/null
@@ -1,12 +0,0 @@
-/* The following types and functions are provided only for
- backwards-compatibility and should not be used in new code. They
- were deprecated in GCC 4.6 and will be removed in the next
- release. */
-typedef void* retval_t; /* return value */
-typedef void(*apply_t)(void); /* function pointer */
-typedef union arglist {
- char *arg_ptr;
- char arg_regs[sizeof (char*)];
-} *arglist_t; /* argument frame */
-
-objc_EXPORT retval_t objc_msg_sendv(id, SEL, arglist_t);