refactor: remove SIZEOF_INT check

I have not seen any indication that this is a problem tha can occur with
cmake.
This commit is contained in:
dundargoc 2023-12-01 17:17:55 +01:00 committed by dundargoc
parent ce6fefbab9
commit c58b2ee58e

View File

@ -8,13 +8,6 @@
#include "auto/config.h"
// Check if configure correctly managed to find sizeof(int). If this failed,
// it becomes zero. This is likely a problem of not being able to run the
// test program. Other items from configure may also be wrong then!
#if (SIZEOF_INT == 0)
# error Configure did not run properly.
#endif
enum {
/// length of a buffer to store a number in ASCII (64 bits binary + NUL)
NUMBUFLEN = 65,