Skip to content
Snippets Groups Projects
Commit 4e9e00cb authored by Bruce Momjian's avatar Bruce Momjian
Browse files

Fix for sunos4 difftime() call.

parent 1d8bbfd2
No related branches found
No related tags found
No related merge requests found
...@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment