diff options
Diffstat (limited to 'otherlibs/unix/rewinddir.c')
-rw-r--r-- | otherlibs/unix/rewinddir.c | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/otherlibs/unix/rewinddir.c b/otherlibs/unix/rewinddir.c deleted file mode 100644 index 4062a46c7e..0000000000 --- a/otherlibs/unix/rewinddir.c +++ /dev/null @@ -1,15 +0,0 @@ -#include <mlvalues.h> -#include "unix.h" -#include <sys/types.h> -#ifdef HAS_DIRENT -#include <dirent.h> -#else -#include <sys/dir.h> -#endif - -value unix_rewinddir(d) /* ML */ - value d; -{ - rewinddir((DIR *) d); - return Atom(0); -} |