diff options
author | Peter Wemm <peter@FreeBSD.org> | 2000-05-24 10:44:45 +0000 |
---|---|---|
committer | Peter Wemm <peter@FreeBSD.org> | 2000-05-24 10:44:45 +0000 |
commit | 6b9085fd58b7602b14be0cd2059285baa764a7ee (patch) | |
tree | fdceab13840fe4133003a1a7a582be4ceb304398 /contrib/ncurses/ncurses/trace/lib_trace.c | |
parent | 1759abf3ae1a38b7578df7996346544b66e508ad (diff) | |
download | src-6b9085fd58b7602b14be0cd2059285baa764a7ee.tar.gz src-6b9085fd58b7602b14be0cd2059285baa764a7ee.zip |
Bring in the fix for the trace/_nc_trace issue, without breaking the
vendor branching. The author has fixed this also so we can do this
safely.
Notes
Notes:
svn path=/vendor/ncurses/dist/; revision=60867
Diffstat (limited to 'contrib/ncurses/ncurses/trace/lib_trace.c')
-rw-r--r-- | contrib/ncurses/ncurses/trace/lib_trace.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/ncurses/ncurses/trace/lib_trace.c b/contrib/ncurses/ncurses/trace/lib_trace.c index aa4b887111a7..0f47e16e698f 100644 --- a/contrib/ncurses/ncurses/trace/lib_trace.c +++ b/contrib/ncurses/ncurses/trace/lib_trace.c @@ -54,7 +54,7 @@ long _nc_outchars; static FILE * tracefp; /* default to writing to stderr */ #endif -void trace(const unsigned int tracelevel GCC_UNUSED) +void _nc_trace(const unsigned int tracelevel GCC_UNUSED) { #ifdef TRACE static bool been_here = FALSE; |