#include <math.h>
#include <float.h>
#include <string.h>
#include <stdio.h>
#include <errno.h>
#include <assert.h>
#include "postgres.h"
#include "fmgr.h"
#include "utils/elog.h"
#include "utils/array.h"
#include "utils/geo_decls.h"
#include "funcapi.h"
#include "../postgis_config.h"
#include "liblwgeom.h"
#include "lwgeom_pg.h"
Go to the source code of this file.
|
#define | MAXDEPTH 32 |
|
#define | PUSH(x, y) ((x)->stack[(x)->stacklen++]=(y)) |
|
#define | LAST(x) ((x)->stack[(x)->stacklen-1]) |
|
#define | POP(x) (--((x)->stacklen)) |
|