mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
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:
parent
2c68f3b4b3
commit
a889712da2
@ -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)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user