mirror of
https://github.com/postgres/postgres.git
synced 2026-03-12 05:32:27 -04:00
6 lines
132 B
C
6 lines
132 B
C
typedef struct NDBOX
|
|
{
|
|
unsigned int size; /* required to be a Postgres varlena type */
|
|
unsigned int dim;
|
|
float x[1];
|
|
} NDBOX;
|