~ubuntu-branches/ubuntu/dapper/htop/dapper

« back to all changes in this revision

Viewing changes to RichString.c

  • Committer: Bazaar Package Importer
  • Author(s): Bartosz Fenski
  • Date: 2005-11-04 17:25:27 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20051104172527-ob8flxaf5409e2y7
Tags: 0.5.4-1
* New upstream version.
  - does not leave cruft on console on exit. (Closes: #334657) 

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
#include <stdlib.h>
5
5
#include <string.h>
6
6
#include <curses.h>
7
 
#include <sys/param.h>
8
7
 
9
8
#include "debug.h"
10
9
#include <assert.h>
20
19
 
21
20
}*/
22
21
 
 
22
#ifndef MIN
 
23
#define MIN(a,b) ((a)<(b)?(a):(b))
 
24
#endif
 
25
 
23
26
/* private property */
24
27
WINDOW* workArea = NULL;
25
28