date and time created 82/02/11 12:01:11 by mckusick
[unix-history] / usr / src / lib / libc / gen / closedir.c
/* Copyright (c) 1982 Regents of the University of California */
static char sccsid[] = "@(#)closedir.c 1.1 %G%";
#include <sys/types.h>
#include <ndir.h>
/*
* close a directory.
*/
void
closedir(dirp)
DIR *dirp;
{
close(dirp->dd_fd);
free(dirp);
}