do not include stdio.h if LTM_NO_FILE is defined

stdio.h might not be available on constraint environments
This commit is contained in:
Daniel Mendler 2019-03-22 15:02:29 +01:00 committed by Steffen Jaeckel
parent f3ff7064f3
commit 8eb3bb282e

View File

@ -12,11 +12,14 @@
#ifndef BN_H_
#define BN_H_
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <limits.h>
#ifndef LTM_NO_FILE
# include <stdio.h>
#endif
#include "tommath_class.h"
#ifdef __cplusplus