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

[osdep] const in get_system_str

This commit is contained in:
Witold Filipczyk 2022-02-21 16:41:48 +01:00
parent f334527a1d
commit 4245634782
2 changed files with 2 additions and 2 deletions

View File

@ -1023,7 +1023,7 @@ set_highpri(void)
#endif
char *
const char *
get_system_str(int xwin)
{
return xwin ? SYSTEM_STR "-xwin" : SYSTEM_STR;

View File

@ -61,7 +61,7 @@ void prealloc_truncate(int, off_t);
static inline void prealloc_truncate(int x, int y) { }
#endif
char *get_system_str(int);
const char *get_system_str(int);
int set_nonblocking_fd(int);
int set_blocking_fd(int);