cleanup old utilities

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@8419 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Linas Vepstas 2003-05-28 23:35:35 +00:00
parent 2c68f3b4b3
commit a889712da2

View File

@ -119,7 +119,7 @@
#define VERSION 10
/* hack alert the current file format does not support most of the
/* The binary file format does not support most of the
* new/improved account & transaction structures
*/
@ -180,6 +180,11 @@ typedef struct {
static GSList *potential_quotes;
#define EPS (1.0e-6)
#define DEQEPS(x,y,eps) (((((x)+(eps))>(y)) ? 1 : 0) && ((((x)-(eps))<(y)) ? 1 : 0))
#define DEQ(x,y) DEQEPS(x,y,EPS)
static void
mark_potential_quote(Split *s, double price, double quantity)
{