/**
* Convert an edge from radians to degrees.
-*/
static void edge_rad2deg(GEOGRAPHIC_EDGE *e)
{
(e->start).lat = rad2deg((e->start).lat);
(e->start).lon = rad2deg((e->start).lon);
(e->end).lon = rad2deg((e->end).lon);
}
+*/
/**
* Convert a point from degrees to radians.
CU_pSuite suite_to_run;
char *test_name;
CU_pTest test_to_run;
- void *dl_handle;
CU_ErrorCode errCode;
CU_pTestRegistry registry;
int num_run;
#define PG_TEST(test_func) { #test_func, test_func }
#define MAX_CUNIT_ERROR_LENGTH 512
char cu_error_msg[MAX_CUNIT_ERROR_LENGTH+1];
-void cu_error_msg_reset();
+void cu_error_msg_reset(void);