Fossil SCM
More updates of func decls f() to f(void).
Commit
9c5952bec35f6e28642ab1d3c11b66bc06308ed11f5d68814e6e67089be94a32
Parent
c3c4ef167ef78b1…
1 file changed
+14
-14
+14
-14
| --- src/json.c | ||
| +++ src/json.c | ||
| @@ -2204,37 +2204,37 @@ | ||
| 2204 | 2204 | } |
| 2205 | 2205 | return json_g_to_json(); |
| 2206 | 2206 | } |
| 2207 | 2207 | |
| 2208 | 2208 | /* Impl in json_login.c. */ |
| 2209 | -cson_value * json_page_anon_password(); | |
| 2209 | +cson_value * json_page_anon_password(void); | |
| 2210 | 2210 | /* Impl in json_artifact.c. */ |
| 2211 | -cson_value * json_page_artifact(); | |
| 2211 | +cson_value * json_page_artifact(void); | |
| 2212 | 2212 | /* Impl in json_branch.c. */ |
| 2213 | -cson_value * json_page_branch(); | |
| 2213 | +cson_value * json_page_branch(void); | |
| 2214 | 2214 | /* Impl in json_diff.c. */ |
| 2215 | -cson_value * json_page_diff(); | |
| 2215 | +cson_value * json_page_diff(void); | |
| 2216 | 2216 | /* Impl in json_dir.c. */ |
| 2217 | -cson_value * json_page_dir(); | |
| 2217 | +cson_value * json_page_dir(void); | |
| 2218 | 2218 | /* Impl in json_login.c. */ |
| 2219 | -cson_value * json_page_login(); | |
| 2219 | +cson_value * json_page_login(void); | |
| 2220 | 2220 | /* Impl in json_login.c. */ |
| 2221 | -cson_value * json_page_logout(); | |
| 2221 | +cson_value * json_page_logout(void); | |
| 2222 | 2222 | /* Impl in json_query.c. */ |
| 2223 | -cson_value * json_page_query(); | |
| 2223 | +cson_value * json_page_query(void); | |
| 2224 | 2224 | /* Impl in json_report.c. */ |
| 2225 | -cson_value * json_page_report(); | |
| 2225 | +cson_value * json_page_report(void); | |
| 2226 | 2226 | /* Impl in json_tag.c. */ |
| 2227 | -cson_value * json_page_tag(); | |
| 2227 | +cson_value * json_page_tag(void); | |
| 2228 | 2228 | /* Impl in json_user.c. */ |
| 2229 | -cson_value * json_page_user(); | |
| 2229 | +cson_value * json_page_user(void); | |
| 2230 | 2230 | /* Impl in json_config.c. */ |
| 2231 | -cson_value * json_page_config(); | |
| 2231 | +cson_value * json_page_config(void); | |
| 2232 | 2232 | /* Impl in json_finfo.c. */ |
| 2233 | -cson_value * json_page_finfo(); | |
| 2233 | +cson_value * json_page_finfo(void); | |
| 2234 | 2234 | /* Impl in json_status.c. */ |
| 2235 | -cson_value * json_page_status(); | |
| 2235 | +cson_value * json_page_status(void); | |
| 2236 | 2236 | |
| 2237 | 2237 | /* |
| 2238 | 2238 | ** Mapping of names to JSON pages/commands. Each name is a subpath of |
| 2239 | 2239 | ** /json (in CGI mode) or a subcommand of the json command in CLI mode |
| 2240 | 2240 | */ |
| 2241 | 2241 |
| --- src/json.c | |
| +++ src/json.c | |
| @@ -2204,37 +2204,37 @@ | |
| 2204 | } |
| 2205 | return json_g_to_json(); |
| 2206 | } |
| 2207 | |
| 2208 | /* Impl in json_login.c. */ |
| 2209 | cson_value * json_page_anon_password(); |
| 2210 | /* Impl in json_artifact.c. */ |
| 2211 | cson_value * json_page_artifact(); |
| 2212 | /* Impl in json_branch.c. */ |
| 2213 | cson_value * json_page_branch(); |
| 2214 | /* Impl in json_diff.c. */ |
| 2215 | cson_value * json_page_diff(); |
| 2216 | /* Impl in json_dir.c. */ |
| 2217 | cson_value * json_page_dir(); |
| 2218 | /* Impl in json_login.c. */ |
| 2219 | cson_value * json_page_login(); |
| 2220 | /* Impl in json_login.c. */ |
| 2221 | cson_value * json_page_logout(); |
| 2222 | /* Impl in json_query.c. */ |
| 2223 | cson_value * json_page_query(); |
| 2224 | /* Impl in json_report.c. */ |
| 2225 | cson_value * json_page_report(); |
| 2226 | /* Impl in json_tag.c. */ |
| 2227 | cson_value * json_page_tag(); |
| 2228 | /* Impl in json_user.c. */ |
| 2229 | cson_value * json_page_user(); |
| 2230 | /* Impl in json_config.c. */ |
| 2231 | cson_value * json_page_config(); |
| 2232 | /* Impl in json_finfo.c. */ |
| 2233 | cson_value * json_page_finfo(); |
| 2234 | /* Impl in json_status.c. */ |
| 2235 | cson_value * json_page_status(); |
| 2236 | |
| 2237 | /* |
| 2238 | ** Mapping of names to JSON pages/commands. Each name is a subpath of |
| 2239 | ** /json (in CGI mode) or a subcommand of the json command in CLI mode |
| 2240 | */ |
| 2241 |
| --- src/json.c | |
| +++ src/json.c | |
| @@ -2204,37 +2204,37 @@ | |
| 2204 | } |
| 2205 | return json_g_to_json(); |
| 2206 | } |
| 2207 | |
| 2208 | /* Impl in json_login.c. */ |
| 2209 | cson_value * json_page_anon_password(void); |
| 2210 | /* Impl in json_artifact.c. */ |
| 2211 | cson_value * json_page_artifact(void); |
| 2212 | /* Impl in json_branch.c. */ |
| 2213 | cson_value * json_page_branch(void); |
| 2214 | /* Impl in json_diff.c. */ |
| 2215 | cson_value * json_page_diff(void); |
| 2216 | /* Impl in json_dir.c. */ |
| 2217 | cson_value * json_page_dir(void); |
| 2218 | /* Impl in json_login.c. */ |
| 2219 | cson_value * json_page_login(void); |
| 2220 | /* Impl in json_login.c. */ |
| 2221 | cson_value * json_page_logout(void); |
| 2222 | /* Impl in json_query.c. */ |
| 2223 | cson_value * json_page_query(void); |
| 2224 | /* Impl in json_report.c. */ |
| 2225 | cson_value * json_page_report(void); |
| 2226 | /* Impl in json_tag.c. */ |
| 2227 | cson_value * json_page_tag(void); |
| 2228 | /* Impl in json_user.c. */ |
| 2229 | cson_value * json_page_user(void); |
| 2230 | /* Impl in json_config.c. */ |
| 2231 | cson_value * json_page_config(void); |
| 2232 | /* Impl in json_finfo.c. */ |
| 2233 | cson_value * json_page_finfo(void); |
| 2234 | /* Impl in json_status.c. */ |
| 2235 | cson_value * json_page_status(void); |
| 2236 | |
| 2237 | /* |
| 2238 | ** Mapping of names to JSON pages/commands. Each name is a subpath of |
| 2239 | ** /json (in CGI mode) or a subcommand of the json command in CLI mode |
| 2240 | */ |
| 2241 |