diff options
author | Daniel Stenberg <daniel@haxx.se> | 2012-06-08 23:14:30 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2012-06-08 23:14:30 +0200 |
commit | dd576194ceaf6d9fef625332395a51fca0fca657 (patch) | |
tree | dab9d1daf40c29a6bae6cabd0c1b8b4436ef542f | |
parent | 870c99b7e76623fc2200dcdef6667759c9578a2c (diff) |
tool_getparam.h: fix compiler error
forward declare the Configurable struct
-rw-r--r-- | src/tool_getparam.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/tool_getparam.h b/src/tool_getparam.h index 0cd2c3972..7dc49393b 100644 --- a/src/tool_getparam.h +++ b/src/tool_getparam.h @@ -37,6 +37,8 @@ typedef enum { PARAM_LAST } ParameterError; +struct Configurable; + ParameterError getparameter(char *flag, char *nextarg, bool *usedarg, |