Fixed style bugs in previous commit (bogus forward declaration and

inconsistent capitalization in comments).
This commit is contained in:
Bruce Evans 2004-05-10 09:36:26 +00:00
parent 92f4dabf30
commit d98d9ce623
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=129081
2 changed files with 2 additions and 6 deletions

View File

@ -37,8 +37,6 @@
#ifndef _FTS_H_
#define _FTS_H_
struct _fts_private; /* implementation data */
typedef struct {
struct _ftsent *fts_cur; /* current node */
struct _ftsent *fts_child; /* linked list of children */
@ -65,7 +63,7 @@ typedef struct {
#define FTS_STOP 0x200 /* (private) unrecoverable error */
int fts_options; /* fts_open options, global flags */
void *fts_clientptr; /* thunk for sort function */
struct _fts_private *fts_priv; /* Implementation data */
struct _fts_private *fts_priv; /* implementation data */
} FTS;
typedef struct _ftsent {

View File

@ -37,8 +37,6 @@
#ifndef _FTS_H_
#define _FTS_H_
struct _fts_private; /* implementation data */
typedef struct {
struct _ftsent *fts_cur; /* current node */
struct _ftsent *fts_child; /* linked list of children */
@ -65,7 +63,7 @@ typedef struct {
#define FTS_STOP 0x200 /* (private) unrecoverable error */
int fts_options; /* fts_open options, global flags */
void *fts_clientptr; /* thunk for sort function */
struct _fts_private *fts_priv; /* Implementation data */
struct _fts_private *fts_priv; /* implementation data */
} FTS;
typedef struct _ftsent {