~ubuntu-branches/ubuntu/natty/ncurses/natty

« back to all changes in this revision

Viewing changes to ncurses/trace/lib_trace.c

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2007-05-17 09:00:42 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20070517090042-86fgxrr6j5jzagot
Tags: 5.6-0ubuntu1
* New upstream version.
  - Remove patches applied upstream: ncurses.upstream, signed-chars.
  - Update patches: debian-backspace.
* Build-depend on g++-multilib instead of lib{32,64}c*-dev-*.

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
 
35
35
/*
36
36
 *      lib_trace.c - Tracing/Debugging routines
 
37
 *
 
38
 * The _tracef() function is originally from pcurses (by Pavel Curtis) in 1982. 
 
39
 * pcurses allowed one to enable/disable tracing using traceon() and traceoff()
 
40
 * functions.  ncurses provides a trace() function which allows one to
 
41
 * selectively enable or disable several tracing features.
37
42
 */
38
43
 
39
44
#include <curses.priv.h>
41
46
 
42
47
#include <ctype.h>
43
48
 
44
 
MODULE_ID("$Id: lib_trace.c,v 1.58 2005/04/16 16:15:24 tom Exp $")
 
49
MODULE_ID("$Id: lib_trace.c,v 1.59 2006/08/19 12:05:25 tom Exp $")
45
50
 
46
51
NCURSES_EXPORT_VAR(unsigned) _nc_tracing = 0; /* always define this */
47
52