Remove unnecessary forward struct declarations

This commit is contained in:
Matthew Brush 2013-03-04 16:06:12 -08:00
parent aafe48ae0d
commit eed54b197b
8 changed files with 0 additions and 8 deletions

View File

@ -53,7 +53,6 @@ CFU_BEGIN_DECLS
typedef enum { libcfu_t_none = 0, libcfu_t_hash_table, libcfu_t_list, libcfu_t_string,
libcfu_t_time, libcfu_t_conf } libcfu_type;
struct libcfu_item;
typedef struct libcfu_item libcfu_item_t;
extern libcfu_type cfu_get_type(void *item);

View File

@ -45,7 +45,6 @@
CFU_BEGIN_DECLS
struct cfuconf;
typedef struct cfuconf cfuconf_t;
/* Apache-style conf files contain directives and containers.

View File

@ -45,7 +45,6 @@
CFU_BEGIN_DECLS
/* The hash table itself. */
struct cfuhash_table;
typedef struct cfuhash_table cfuhash_table_t;
/* Prototype for a pointer to a hashing function. */

View File

@ -44,7 +44,6 @@
CFU_BEGIN_DECLS
/* The list itself. */
struct cfulist;
typedef struct cfulist cfulist_t;
/* Function called for each element in the list when passed to

View File

@ -42,7 +42,6 @@
CFU_BEGIN_DECLS
struct cfuopt_struct;
typedef struct cfuopt_struct cfuopt_t;
/* Returns a new options context */

View File

@ -44,7 +44,6 @@
CFU_BEGIN_DECLS
struct cfustring;
typedef struct cfustring cfustring_t;
/* Returns a new String. */

View File

@ -53,7 +53,6 @@ CFU_BEGIN_DECLS
* cfuthread_queue_new() function.
*/
struct cfuthread_queue;
typedef struct cfuthread_queue cfuthread_queue_t;
typedef void * (*cfuthread_queue_fn_t)(void *arg);

View File

@ -42,7 +42,6 @@
CFU_BEGIN_DECLS
struct cfutime;
typedef struct cfutime cfutime_t;
/* Return a new cfutime structure. */