DataMuseum.dk

Presents historical artifacts from the history of:

DKUUG/EUUG Conference tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about DKUUG/EUUG Conference tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download

⟦3b8e1d363⟧ TextFile

    Length: 271 (0x10f)
    Types: TextFile
    Names: »closedir.c«

Derivation

└─⟦060c9c824⟧ Bits:30007080 DKUUG TeX 2/12/89
    └─⟦this⟧ »./DVIware/laser-setters/umd-dvi/libcompat/closedir.c« 

TextFile

/*
	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 );
	}