1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-07-30 22:43:08 +03:00

Removed dependency on unistd.h for MSVC in apps

This commit is contained in:
Paul Bakker
2013-11-30 15:15:31 +01:00
parent 840ab20ea2
commit fdda785248
2 changed files with 11 additions and 1 deletions

View File

@ -32,9 +32,12 @@
#include <string.h>
#include <stdlib.h>
#include <stdio.h>
#include <unistd.h>
#include <signal.h>
#if !defined(_MSC_VER) || defined(EFIX64) || defined(EFI32)
#include <unistd.h>
#endif
#include "polarssl/entropy.h"
#include "polarssl/ctr_drbg.h"
#include "polarssl/certs.h"