#ifndef on all header files

This commit is contained in:
Philippe Teuwen 2019-04-11 01:16:25 +02:00
commit 2879599ac4
11 changed files with 37 additions and 0 deletions

View file

@ -1,4 +1,7 @@
#ifndef __BITLIB_LIMITS_H
#define __BITLIB_LIMITS_H
#define BITLIB_FLOAT_BITS 53
#define BITLIB_FLOAT_MAX 0xfffffffffffffL
#define BITLIB_FLOAT_MIN (-0x10000000000000L)
#define BITLIB_FLOAT_UMAX 0x1fffffffffffffUL
#endif