Remove sparc dir, add difftime macro for sunos.

pull/50/head
Bruce Momjian 29 years ago
parent cfd15d16fa
commit 5a38a119b2
  1. 5
      src/backend/utils/adt/timestamp.c

@ -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 *

Loading…
Cancel
Save