From 88e89f902239d962833a1a9ccbc658f32ea77c5d Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Sun, 27 Jan 2002 17:13:35 +0000 Subject: [PATCH] For the sake of DOS and Windows, provide a different way to get a pid_t. --- crypto/engine/hw_aep.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/crypto/engine/hw_aep.c b/crypto/engine/hw_aep.c index 9d73656c14..e51b73c5b7 100644 --- a/crypto/engine/hw_aep.c +++ b/crypto/engine/hw_aep.c @@ -58,7 +58,14 @@ #include #include #include + +#include +#ifndef OPENSSL_SYS_MSDOS #include +#else +#include +typedef int pid_t; +#endif #include #include "cryptlib.h"