Browse Source

Remove _WIN32

pull/1133/head
Max Lv 8 years ago
parent
commit
d783aab537
1 changed files with 0 additions and 12 deletions
  1. 12
      src/encrypt.c

12
src/encrypt.c

@ -40,14 +40,8 @@
#include <polarssl/ctr_drbg.h>
#include <polarssl/version.h>
#define CIPHER_UNSUPPORTED "unsupported"
#include <time.h>
#ifdef _WIN32
#include <windows.h>
#include <wincrypt.h>
#else
#include <stdio.h>
#endif
#elif defined(USE_CRYPTO_MBEDTLS)
@ -56,14 +50,8 @@
#include <mbedtls/ctr_drbg.h>
#include <mbedtls/version.h>
#define CIPHER_UNSUPPORTED "unsupported"
#include <time.h>
#ifdef _WIN32
#include <windows.h>
#include <wincrypt.h>
#else
#include <stdio.h>
#endif
#endif

Loading…
Cancel
Save