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