Commit 88e89f90 authored by Richard Levitte's avatar Richard Levitte
Browse files

For the sake of DOS and Windows, provide a different way to get a

pid_t.
parent 41aad62a
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -58,7 +58,14 @@
#include <stdio.h>
#include <openssl/bn.h>
#include <string.h>

#include <openssl/e_os2.h>
#ifndef OPENSSL_SYS_MSDOS
#include <unistd.h>
#else
#include <process.h>
typedef int pid_t;
#endif

#include <openssl/crypto.h>
#include "cryptlib.h"