12 lines
130 B
C
12 lines
130 B
C
#ifndef tool_defs_h
|
|
|
|
#define tool_defs_h
|
|
|
|
#include <math.h>
|
|
|
|
|
|
#define MISSING -9999
|
|
#define round(x) (floor(0.5 + (x)));
|
|
|
|
|
|
#endif
|