rz_softc
struct rz_softc *sc;
sc = alloc(sizeof(struct rz_softc));
memset(sc, 0, sizeof(struct rz_softc));
dealloc(sc, sizeof(struct rz_softc));
prom_close(((struct rz_softc *)f->f_devdata)->sc_fd);
dealloc(f->f_devdata, sizeof(struct rz_softc));
struct rz_softc *sc = (struct rz_softc *)devdata;