diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-07-03 10:31:19 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-07-03 10:31:19 -0400 |
commit | cf0b07c2e5284325fb89f2c8ee3ad99f5ed02195 (patch) | |
tree | 53153ac7646e5f5424a5e43381edf84db502b2e6 /src/lib/cc | |
parent | 4638be5312f527e4769317b2b222faa52bbe0093 (diff) | |
download | tor-cf0b07c2e5284325fb89f2c8ee3ad99f5ed02195.tar.gz tor-cf0b07c2e5284325fb89f2c8ee3ad99f5ed02195.zip |
Retire some unused (or nearly unused) macros.
Diffstat (limited to 'src/lib/cc')
-rw-r--r-- | src/lib/cc/compat_compiler.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/lib/cc/compat_compiler.h b/src/lib/cc/compat_compiler.h index c1621724d2..a043ae809c 100644 --- a/src/lib/cc/compat_compiler.h +++ b/src/lib/cc/compat_compiler.h @@ -189,14 +189,11 @@ #endif #define U64_PRINTF_ARG(a) ((uint64_t)a) -#define U64_SCANF_ARG(a) (a) #define U64_LITERAL(n) UINT64_C(n) #define I64_PRINTF_ARG(a) ((int64_t)a) -#define I64_SCANF_ARG(a) (a) #define I64_LITERAL(n) INT64_C(n) #define U64_FORMAT "%"PRIu64 #define I64_FORMAT "%"PRId64 -#define INTPTR_T_FORMAT "%"PRIuPTR /** Macro: yield a pointer to the field at position <b>off</b> within the * structure <b>st</b>. Example: |