Make sure sysconf exists (it doesn't in the VMS C RTL lesser than version 7).

This commit is contained in:
Richard Levitte 2002-11-18 23:05:50 +00:00
parent 8b591c2f8e
commit 273c624442

View File

@ -187,7 +187,8 @@
/* The following if from times(3) man page. It may need to be changed */
#ifndef HZ
# ifdef _SC_CLK_TCK
# if defined(_SC_CLK_TCK) \
&& (!defined(OPENSSL_SYS_VMS) || __CTRL_VER >= 70000000)
# define HZ ((double)sysconf(_SC_CLK_TCK))
# else
# ifndef CLK_TCK