diff options
author | vva@genie.(none) <> | 2002-11-27 16:14:55 +0400 |
---|---|---|
committer | vva@genie.(none) <> | 2002-11-27 16:14:55 +0400 |
commit | 2fa029b91c26607fcb73e967426a2eff46a1d360 (patch) | |
tree | e8e524f7eb09b4bd9c5f0ea8e9ba787b89fd42bb | |
parent | 5d292d622ca5114fbcadf834f26e4d9a9f81b2e1 (diff) | |
download | mariadb-git-2fa029b91c26607fcb73e967426a2eff46a1d360.tar.gz |
correction for compiling under FreeBSD
-rw-r--r-- | readline/terminal.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/readline/terminal.c b/readline/terminal.c index 9ca4d6e43c5..397b10a1d46 100644 --- a/readline/terminal.c +++ b/readline/terminal.c @@ -84,8 +84,8 @@ static int tcap_initialized; # if defined (__EMX__) || defined (NEED_EXTERN_PC) extern # endif /* __EMX__ || NEED_EXTERN_PC */ -const char PC; -const char *BC, *UP; +char PC; +char *BC, *UP; #endif /* __linux__ */ /* Some strings to control terminal actions. These are output by tputs (). */ |