Commit 4e9e00cb authored by Bruce Momjian's avatar Bruce Momjian

Fix for sunos4 difftime() call.

parent 1d8bbfd2
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
#include "utils/builtins.h" #include "utils/builtins.h"
/* sunos doesn't have this function */ /* sunos doesn't have this function */
#if defined(sunos) #if defined(sunos4)
#define difftime(time1,time0) ((time1) - (time0)) #define difftime(time1,time0) ((time1) - (time0))
#endif #endif
......
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