mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-10-13 08:45:07 +02:00
12 lines
317 B
C
12 lines
317 B
C
#include <stdarg.h>
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
#include <stdlib.h>
|
|
|
|
#define UNSIGNED_NEEDS_ULL_SUFFIX 9223372036854775808ULL
|
|
|
|
#define UNSIGNED_DOESNT_NEED_ULL_SUFFIX 8070450532247928832
|
|
|
|
#define SIGNED_NEEDS_ULL_SUFFIX -9223372036854775808ULL
|
|
|
|
#define SIGNED_DOESNT_NEED_ULL_SUFFIX -9223372036854775807
|