Actually fix g++ builds

This commit is contained in:
lilmayofuksu
2022-07-06 19:04:21 +03:00
parent 487b36a37e
commit dd56af8fcb
2 changed files with 6 additions and 14 deletions

View File

@@ -6,8 +6,6 @@
#ifndef __OQS_AES_H
#define __OQS_AES_H
extern "C" {
#include <stdint.h>
#include <stdlib.h>
@@ -65,6 +63,4 @@ void OQS_AES128_ECB_enc_sch(const uint8_t *plaintext, const size_t plaintext_len
*/
void OQS_AES128_ECB_dec_sch(const uint8_t *ciphertext, const size_t ciphertext_len, const void *schedule, uint8_t *plaintext);
}
#endif