style(9): line up function names.

This commit is contained in:
Mike Barcroft 2002-09-09 03:52:43 +00:00
parent 6c1739987a
commit 006d0ddf67
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=103111

View File

@ -87,20 +87,21 @@ typedef struct _dirdesc {
#include <sys/cdefs.h> #include <sys/cdefs.h>
__BEGIN_DECLS __BEGIN_DECLS
DIR *opendir(const char *); DIR *opendir(const char *);
struct dirent *readdir(DIR *); struct dirent *
void rewinddir(DIR *); readdir(DIR *);
int closedir(DIR *); void rewinddir(DIR *);
int closedir(DIR *);
#ifndef _POSIX_SOURCE #ifndef _POSIX_SOURCE
DIR *__opendir2(const char *, int); DIR *__opendir2(const char *, int);
long telldir(DIR *); long telldir(DIR *);
void seekdir(DIR *, long); void seekdir(DIR *, long);
int scandir(const char *, struct dirent ***, int scandir(const char *, struct dirent ***,
int (*)(struct dirent *), int (*)(const void *, const void *)); int (*)(struct dirent *), int (*)(const void *, const void *));
int alphasort(const void *, const void *); int alphasort(const void *, const void *);
int getdents(int, char *, int); int getdents(int, char *, int);
int getdirentries(int, char *, int, long *); int getdirentries(int, char *, int, long *);
int readdir_r(DIR *, struct dirent *, struct dirent **); int readdir_r(DIR *, struct dirent *, struct dirent **);
#endif /* not POSIX */ #endif /* not POSIX */
__END_DECLS __END_DECLS