mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 09:54:16 +01:00
16 lines
393 B
C
16 lines
393 B
C
|
#ifndef LIGHTNING_CLI_CONFIG_CLI_H
|
||
|
#define LIGHTNING_CLI_CONFIG_CLI_H
|
||
|
|
||
|
#include "config.h"
|
||
|
#include <stdio.h>
|
||
|
|
||
|
#ifndef CLN_TEST
|
||
|
/* Redefinition procedure is a very cool feature, but
|
||
|
if we try to redefine a procedure that is already
|
||
|
redefined somewhere (like read in alpine) we can have
|
||
|
tricky compilation error */
|
||
|
#define cli_read read
|
||
|
#endif
|
||
|
|
||
|
#endif /* LIGHTNING_CLI_CONFIG_CLI_H */
|