Commit 5a38a119 authored by Bruce Momjian's avatar Bruce Momjian

Remove sparc dir, add difftime macro for sunos.

parent cfd15d16
......@@ -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 *
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment