date and time created 82/02/11 12:01:11 by mckusick
[unix-history] / usr / src / lib / libc / gen / closedir.c
CommitLineData
4ddae876
KM
1/* Copyright (c) 1982 Regents of the University of California */
2
3static char sccsid[] = "@(#)closedir.c 1.1 %G%";
4
5#include <sys/types.h>
6#include <ndir.h>
7
8/*
9 * close a directory.
10 */
11void
12closedir(dirp)
13 DIR *dirp;
14{
15 close(dirp->dd_fd);
16 free(dirp);
17}