1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-30 11:03:19 +03:00

Further MSVC portability fixes from Magnus.

This commit is contained in:
Tom Lane
2006-10-19 20:03:08 +00:00
parent 6bc1f9b334
commit f6e00ae128
2 changed files with 18 additions and 2 deletions

View File

@ -1,7 +1,10 @@
/* $PostgreSQL: pgsql/contrib/earthdistance/earthdistance.c,v 1.11 2006/05/30 22:12:12 tgl Exp $ */
/* $PostgreSQL: pgsql/contrib/earthdistance/earthdistance.c,v 1.12 2006/10/19 20:03:07 tgl Exp $ */
#include "postgres.h"
#ifdef WIN32
#define _USE_MATH_DEFINES
#endif
#include <math.h>
#include "utils/geo_decls.h" /* for Pt */