1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-26 01:15:37 +00:00

[dgi] compilation fix

This commit is contained in:
Witold Filipczyk 2022-05-21 20:14:12 +02:00
parent 443d42608d
commit 74b1967ce7

View File

@ -11,9 +11,14 @@ extern "C" {
struct connection;
struct module;
#ifdef CONFIG_DGI
extern struct module dgi_protocol_module;
extern protocol_handler_T dgi_protocol_handler;
int execute_dgi(struct connection *);
#else
#define dgi_protocol_handler NULL
#endif
#ifdef __cplusplus
}