aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorMike Barcroft <mike@FreeBSD.org>2002-09-09 03:52:43 +0000
committerMike Barcroft <mike@FreeBSD.org>2002-09-09 03:52:43 +0000
commit006d0ddf67259e9e2a43be2fd64d8c8aa0185ac1 (patch)
tree46f7b9b1ac002febf47874be95c5ee4efbd8874b /include
parent6c1739987a795ccdab9bd8e7f50c14e71f6ba688 (diff)
downloadsrc-006d0ddf67259e9e2a43be2fd64d8c8aa0185ac1.tar.gz
src-006d0ddf67259e9e2a43be2fd64d8c8aa0185ac1.zip
style(9): line up function names.
Notes
Notes: svn path=/head/; revision=103111
Diffstat (limited to 'include')
-rw-r--r--include/dirent.h27
1 files 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 <sys/cdefs.h>
__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