| 83 | } |
| 84 | |
| 85 | struct oextra * |
| 86 | newoextra(void) |
| 87 | { |
| 88 | struct oextra *oextra; |
| 89 | |
| 90 | oextra = (struct oextra *) alloc(sizeof (struct oextra)); |
| 91 | init_oextra(oextra); |
| 92 | return oextra; |
| 93 | } |
| 94 | |
| 95 | void |
| 96 | dealloc_oextra(struct obj *o) |
no test coverage detected