summaryrefslogtreecommitdiff
path: root/lib/libssl
diff options
context:
space:
mode:
authorJoel Sing <jsing@cvs.openbsd.org>2014-05-05 16:06:56 +0000
committerJoel Sing <jsing@cvs.openbsd.org>2014-05-05 16:06:56 +0000
commit2145c8e87f3c810962aa9823415aeae9ac9cc59a (patch)
treebeb35d380eb22931e4f855cff22574dfb65d143c /lib/libssl
parent6823f4c91b9564acf8fd857f2cba89cef873f9d9 (diff)
OpenBSD has_SC_CLK_TCK.
ok miod@
Diffstat (limited to 'lib/libssl')
-rw-r--r--lib/libssl/src/apps/apps.c27
1 files changed, 0 insertions, 27 deletions
diff --git a/lib/libssl/src/apps/apps.c b/lib/libssl/src/apps/apps.c
index 5e6b94f84b7..b2efe6db39f 100644
--- a/lib/libssl/src/apps/apps.c
+++ b/lib/libssl/src/apps/apps.c
@@ -2454,7 +2454,6 @@ next_protos_parse(unsigned short *outlen, const char *in)
*/
/* app_tminterval section */
-#if defined(_SC_CLK_TCK) /* by means of unistd.h */
#include <sys/times.h>
double
@@ -2478,32 +2477,6 @@ app_tminterval(int stop, int usertime)
return (ret);
}
-#else
-#include <sys/time.h>
-#include <sys/resource.h>
-
-double
-app_tminterval(int stop, int usertime)
-{
- double ret = 0;
- struct rusage rus;
- struct timeval now;
- static struct timeval tmstart;
-
- if (usertime)
- getrusage(RUSAGE_SELF, &rus), now = rus.ru_utime;
- else
- gettimeofday(&now, NULL);
-
- if (stop == TM_START)
- tmstart = now;
- else
- ret = ((now.tv_sec + now.tv_usec * 1e-6) -
- (tmstart.tv_sec + tmstart.tv_usec * 1e-6));
-
- return ret;
-}
-#endif
int
app_isdir(const char *name)