Changes to update Tomato RAF.
[tomato.git] / release / src / router / dnscrypt / src / proxy / utils.h
blob0ecf588912b9d6eda6d25b669f46df99cb0cbf6e
2 #ifndef __UTILS_H__
3 #define __UTILS_H__ 1
5 #include <stdint.h>
6 #include <stdlib.h>
8 #define COMPILER_ASSERT(X) (void) sizeof(char[(X) ? 1 : -1])
10 void dnscrypt_memzero(void * const pnt, const size_t size);
11 uint64_t dnscrypt_hrtime(void);
12 int closedesc_all(const int closestdin);
13 int do_daemonize(void);
15 #endif