Subversion Repositories Kolibri OS

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
9955 turbocat 1
/*
2
 * Copyright (C) KolibriOS team 2024. All rights reserved.
3
 * Distributed under terms of the GNU General Public License
4
*/
5
 
6
#include 
7
#include 
8
#include 
9
 
10
int
11
_DEFUN(closedir, (dirp),
12
       register DIR *dirp)
13
{
14
    if (!dirp)
15
    {
16
        errno = EBADF;
17
        return -1;
18
    }
19
 
20
    if (dirp->path)
21
        free(dirp->path);
22
 
23
    free(dirp);
24
    return 0;
25
}