Home | History | Annotate | Download | only in misc

Lines Matching refs:typedef

83  * Do not create a typedef like `typedef struct example example_t;' or
84 * `typedef struct example *example_t;'. Use `struct example' or
101 typedef void sighandler_t(int);
106 typedef uint16_t nlink_t;
113 typedef uint8_t foo_t; /* Hypothetical leg26 definition */
114 typedef struct foo *foo_t; /* Hypothetical i786 definition */
115 typedef struct { /* Hypothetical risc72 definition */
124 * use a type `foo_t' with `typedef void *foo_t'. Use `struct foo *'
269 * Don't create typedef aliases for struct or union types. That way,
271 * file defining the typedef.