Fix for sunos4 difftime() call.

This commit is contained in:
Bruce Momjian 1997-08-19 21:47:07 +00:00
parent 1d8bbfd2e7
commit 4e9e00cb68
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@
#include "utils/builtins.h"
/* sunos doesn't have this function */
#if defined(sunos)
#if defined(sunos4)
#define difftime(time1,time0) ((time1) - (time0))
#endif