~ubuntu-branches/ubuntu/precise/grass/precise

« back to all changes in this revision

Viewing changes to raster/r.random.surface/ransurf.h

  • Committer: Bazaar Package Importer
  • Author(s): Francesco Paolo Lovergine
  • Date: 2011-04-13 17:08:41 UTC
  • mfrom: (8.1.7 sid)
  • Revision ID: james.westby@ubuntu.com-20110413170841-ss1t9bic0d0uq0gz
Tags: 6.4.1-1
* New upstream version.
* Now build-dep on libjpeg-dev and current libreadline6-dev.
* Removed patch swig: obsolete.
* Policy bumped to 3.9.2, without changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
56
56
    /* please, remove before GRASS 7 released */
57
57
GLOBAL struct Flag *Verbose;
58
58
GLOBAL struct Option *Distance, *Exponent, *Weight;
59
 
 
60
 
#ifdef DEBUG
61
 
#define INDX(a,b) (printf("(a)[%d]:%lf ",(b),(a)[(b)]))
62
 
#define CHARS(a) (printf("(a):%s ",(a)))
63
 
#define DOUBLE(a) (printf("(a):%.12lf ",(a)))
64
 
#define INT(a) (printf("(a):%d ",(a)))
65
 
#define RETURN (printf("\n"))
66
 
#else
67
 
#define INDX(a,b)
68
 
#define CHARS(a)
69
 
#define DOUBLE(a)
70
 
#define INT(a)
71
 
#define RETURN
72
 
#endif
73
 
 
74
 
#ifdef TRACE
75
 
#define FUNCTION(a) (printf("Function:(a)\n"))
76
 
#else
77
 
#define FUNCTION(a)
78
 
#endif
79
 
 
80
59
#endif