1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-12-04 14:46:47 -05:00

[osdep] const in get_e

This commit is contained in:
Witold Filipczyk 2022-02-17 21:28:45 +01:00
parent 1264cb944d
commit 2170d79036
2 changed files with 2 additions and 2 deletions

View File

@ -131,7 +131,7 @@ set_ip_tos_throughput(int socket)
}
int
get_e(char *env)
get_e(const char *env)
{
char *v = getenv(env);

View File

@ -20,7 +20,7 @@ extern "C" {
#endif
int get_system_env(void);
int get_e(char *env);
int get_e(const char *env);
int is_xterm(void);
int is_twterm(void);
void get_terminal_size(int, int *, int *);