summaryrefslogblamecommitdiffstats
path: root/c/src/exec/libcsupport/src/closedir.c
blob: 5edb3499e6b4719731162a272f37f78c8eb84d1c (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11


                                    
        

   




                      
                  
 


                    
 

                 
 
/*
 *  closedir() - POSIX 1003.1b - XXX
 *
 *  $Id$
 */


#include <sys/types.h>
#include <dirent.h>
#include <stdlib.h>
#include <unistd.h>
#include <errno.h>

int closedir(
  register DIR *dirp
)
{
  errno = ENOSYS;
  return -1;
}