mirror of
https://github.com/postgres/postgres.git
synced 2025-06-16 06:01:02 +03:00
Remove sparc dir, add difftime macro for sunos.
This commit is contained in:
@ -6,6 +6,11 @@
|
|||||||
#include "miscadmin.h"
|
#include "miscadmin.h"
|
||||||
#include "utils/builtins.h"
|
#include "utils/builtins.h"
|
||||||
|
|
||||||
|
/* sunos doesn't have this function */
|
||||||
|
#if defined(sunos)
|
||||||
|
#define difftime(time1,time0) ((time1) - (time0))
|
||||||
|
#endif
|
||||||
|
|
||||||
#if FALSE
|
#if FALSE
|
||||||
/* copy the next part of the string into a buffer */
|
/* copy the next part of the string into a buffer */
|
||||||
static const char *
|
static const char *
|
||||||
|
Reference in New Issue
Block a user