blob: 9d889bfc08c0c1753c6aac449c63da49dc1367f6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/* For every class which happens to have statically allocated instances in
this module, one OBJC_STATIC_INSTANCES is allocated by the compiler.
INSTANCES is NULL terminated and points to all statically allocated
instances of this class. */
struct objc_static_instances
{
char *class_name;
#ifdef __cplusplus
id instances[1];
#else
id instances[0];
#endif
};
|