put include before extern

master
George Hotz 2017-04-24 19:21:17 -07:00
parent ad1290d32d
commit 526a52c845
1 changed files with 2 additions and 2 deletions

View File

@ -28,12 +28,12 @@
#ifndef SYSTEM_CORE_INCLUDE_MINCRYPT_RSA_H_
#define SYSTEM_CORE_INCLUDE_MINCRYPT_RSA_H_
#include "stdint.h"
#ifdef __cplusplus
extern "C" {
#endif
#include "stdint.h"
#define RSANUMBYTES 256 /* 2048 bit key length */
#define RSANUMWORDS (RSANUMBYTES / sizeof(uint32_t))