mirror of
				https://github.com/postgres/postgres.git
				synced 2025-11-03 09:13:20 +03:00 
			
		
		
		
	Fix for sunos4 difftime() call.
This commit is contained in:
		@@ -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
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user