From 006d0ddf67259e9e2a43be2fd64d8c8aa0185ac1 Mon Sep 17 00:00:00 2001 From: Mike Barcroft Date: Mon, 9 Sep 2002 03:52:43 +0000 Subject: [PATCH] style(9): line up function names. --- include/dirent.h | 27 ++++++++++++++------------- 1 file changed, 14 insertions(+), 13 deletions(-) diff --git a/include/dirent.h b/include/dirent.h index c0dd4a0c5ae1..b3de757a0427 100644 --- a/include/dirent.h +++ b/include/dirent.h @@ -87,20 +87,21 @@ typedef struct _dirdesc { #include __BEGIN_DECLS -DIR *opendir(const char *); -struct dirent *readdir(DIR *); -void rewinddir(DIR *); -int closedir(DIR *); +DIR *opendir(const char *); +struct dirent * + readdir(DIR *); +void rewinddir(DIR *); +int closedir(DIR *); #ifndef _POSIX_SOURCE -DIR *__opendir2(const char *, int); -long telldir(DIR *); -void seekdir(DIR *, long); -int scandir(const char *, struct dirent ***, - int (*)(struct dirent *), int (*)(const void *, const void *)); -int alphasort(const void *, const void *); -int getdents(int, char *, int); -int getdirentries(int, char *, int, long *); -int readdir_r(DIR *, struct dirent *, struct dirent **); +DIR *__opendir2(const char *, int); +long telldir(DIR *); +void seekdir(DIR *, long); +int scandir(const char *, struct dirent ***, + int (*)(struct dirent *), int (*)(const void *, const void *)); +int alphasort(const void *, const void *); +int getdents(int, char *, int); +int getdirentries(int, char *, int, long *); +int readdir_r(DIR *, struct dirent *, struct dirent **); #endif /* not POSIX */ __END_DECLS