NetBSD/lib/libc/gen/closedir.c

77 lines
2.6 KiB
C
Raw Normal View History

/* $NetBSD: closedir.c,v 1.10 2000/01/22 22:19:09 mycroft Exp $ */
1993-03-21 12:45:37 +03:00
/*
1994-07-27 09:26:13 +04:00
* Copyright (c) 1983, 1993
* Regents of the University of California. All rights reserved.
1993-03-21 12:45:37 +03:00
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by the University of
* California, Berkeley and its contributors.
* 4. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
1997-07-13 23:45:36 +04:00
#include <sys/cdefs.h>
1993-03-21 12:45:37 +03:00
#if defined(LIBC_SCCS) && !defined(lint)
#if 0
static char sccsid[] = "@(#)closedir.c 8.1 (Berkeley) 6/10/93";
#else
__RCSID("$NetBSD: closedir.c,v 1.10 2000/01/22 22:19:09 mycroft Exp $");
#endif
1993-03-21 12:45:37 +03:00
#endif /* LIBC_SCCS and not lint */
#include "namespace.h"
1993-03-21 12:45:37 +03:00
#include <sys/types.h>
#include <assert.h>
1993-03-21 12:45:37 +03:00
#include <dirent.h>
#include <errno.h>
1993-03-21 12:45:37 +03:00
#include <stdlib.h>
#include <unistd.h>
#ifdef __weak_alias
__weak_alias(closedir,_closedir)
#endif
1993-03-21 12:45:37 +03:00
/*
* close a directory.
*/
int
closedir(dirp)
1998-02-03 21:23:37 +03:00
DIR *dirp;
1993-03-21 12:45:37 +03:00
{
int fd;
_DIAGASSERT(dirp != NULL);
1994-07-27 09:26:13 +04:00
seekdir(dirp, dirp->dd_rewind); /* free seekdir storage */
1993-03-21 12:45:37 +03:00
fd = dirp->dd_fd;
dirp->dd_fd = -1;
dirp->dd_loc = 0;
1995-06-16 11:05:27 +04:00
free((void *)dirp->dd_buf);
free((void *)dirp);
1993-03-21 12:45:37 +03:00
return(close(fd));
}