Fix includes

Header files which are located in the same directory that the file from where it is included must be included using `" "`, not `< >`.
Otherwise the compiler (gcc 5) cannot understand `#include <tommath_class.h>` in `/usr/include/tommath/tommath.h`.
This commit is contained in:
Mikhail Novosyolov 2018-11-18 01:30:51 +03:00 committed by Steffen Jaeckel
parent 285b580995
commit adbadc70f4
2 changed files with 3 additions and 3 deletions

View File

@ -18,7 +18,7 @@
#include <stdint.h>
#include <limits.h>
#include <tommath_class.h>
#include "tommath_class.h"
#ifdef __cplusplus
extern "C" {

View File

@ -1121,8 +1121,8 @@
# define LTM_LAST
#endif
#include <tommath_superclass.h>
#include <tommath_class.h>
#include "tommath_superclass.h"
#include "tommath_class.h"
#else
# define LTM_LAST
#endif