X-Git-Url: https://code.delx.au/gnu-emacs/blobdiff_plain/7c2fb837ec2f0e0a509f22ccc35f9b43476a6119..fb39b937b0628f4592b07d0aa61a41cf696abd30:/src/ndir.h diff --git a/src/ndir.h b/src/ndir.h index d7bac9d3fa..cd7cdbe55f 100644 --- a/src/ndir.h +++ b/src/ndir.h @@ -32,13 +32,10 @@ typedef struct char dd_buf[DIRBLKSIZ]; /* directory block */ } DIR; /* stream data from opendir() */ -extern DIR *opendir(); -extern struct direct *readdir(); -extern long telldir(); -extern void seekdir(); -extern void closedir(); +extern DIR *opendir (char *); +extern struct direct *readdir (DIR *); +extern void seekdir (DIR *, long); +extern void closedir (DIR *); #define rewinddir( dirp ) seekdir( dirp, 0L ) -/* arch-tag: aea50570-ffb7-43fd-b423-7743b10fbe6e - (do not change this comment) */