|
DataMuseum.dkPresents historical artifacts from the history of: DKUUG/EUUG Conference tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about DKUUG/EUUG Conference tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - metrics - download
Length: 271 (0x10f) Types: TextFile Names: »closedir.c«
└─⟦060c9c824⟧ Bits:30007080 DKUUG TeX 2/12/89 └─⟦this⟧ »./DVIware/laser-setters/umd-dvi/libcompat/closedir.c«
/* closedir -- C library extension routine last edit: 21-Jan-1984 D A Gwyn */ #include <dir.h> extern void free(); extern int close(); void closedir( dirp ) register DIR *dirp; /* stream from opendir() */ { (void)close( dirp->dd_fd ); free( (char *)dirp ); }