mirror of
				https://github.com/postgres/postgres.git
				synced 2025-11-03 09:13:20 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			8 lines
		
	
	
		
			161 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			161 B
		
	
	
	
		
			C
		
	
	
	
	
	
/*#include "postgres.h"*/
 | 
						|
 | 
						|
typedef struct NDBOX {
 | 
						|
  unsigned int size;			/* required to be a Postgres varlena type */
 | 
						|
  unsigned int dim;
 | 
						|
  float x[1];
 | 
						|
} NDBOX;
 |