diff options
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/container/container.h | 9 | ||||
-rw-r--r-- | src/lib/container/include.am | 1 | ||||
-rw-r--r-- | src/lib/container/map.c | 2 | ||||
-rw-r--r-- | src/lib/crypt_ops/crypto.c | 1 | ||||
-rw-r--r-- | src/lib/crypt_ops/crypto_curve25519.c | 1 |
5 files changed, 1 insertions, 13 deletions
diff --git a/src/lib/container/container.h b/src/lib/container/container.h deleted file mode 100644 index 3dc70e6353..0000000000 --- a/src/lib/container/container.h +++ /dev/null @@ -1,9 +0,0 @@ -/* Copyright (c) 2003-2004, Roger Dingledine - * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson. - * Copyright (c) 2007-2018, The Tor Project, Inc. */ -/* See LICENSE for licensing information */ - -#ifndef TOR_CONTAINER_H -#define TOR_CONTAINER_H - -#endif /* !defined(TOR_CONTAINER_H) */ diff --git a/src/lib/container/include.am b/src/lib/container/include.am index e2994674ad..0e7acdff97 100644 --- a/src/lib/container/include.am +++ b/src/lib/container/include.am @@ -19,7 +19,6 @@ src_lib_libtor_container_testing_a_CFLAGS = $(AM_CFLAGS) $(TEST_CFLAGS) noinst_HEADERS += \ src/lib/container/bitarray.h \ src/lib/container/bloomfilt.h \ - src/lib/container/container.h \ src/lib/container/map.h \ src/lib/container/order.h \ src/lib/container/smartlist.h diff --git a/src/lib/container/map.c b/src/lib/container/map.c index 508680e4a5..f6b0f73c17 100644 --- a/src/lib/container/map.c +++ b/src/lib/container/map.c @@ -158,7 +158,7 @@ digest256map_assign_key(digest256map_entry_t *ent, const uint8_t *key) /** * Macro: implement all the functions for a map that are declared in - * container.h by the DECLARE_MAP_FNS() macro. You must additionally define a + * map.h by the DECLARE_MAP_FNS() macro. You must additionally define a * prefix_entry_free_() function to free entries (and their keys), a * prefix_assign_tmp_key() function to temporarily set a stack-allocated * entry to hold a key, and a prefix_assign_key() function to set a diff --git a/src/lib/crypt_ops/crypto.c b/src/lib/crypt_ops/crypto.c index 9b1c38041f..46026b6ac8 100644 --- a/src/lib/crypt_ops/crypto.c +++ b/src/lib/crypt_ops/crypto.c @@ -66,7 +66,6 @@ ENABLE_GCC_WARNING(redundant-decls) #include "lib/cc/torint.h" #include "lib/crypt_ops/aes.h" #include "common/util.h" -#include "lib/container/container.h" #include "common/compat.h" #include "common/sandbox.h" #include "common/util_format.h" diff --git a/src/lib/crypt_ops/crypto_curve25519.c b/src/lib/crypt_ops/crypto_curve25519.c index 1e7a456255..03225f1c16 100644 --- a/src/lib/crypt_ops/crypto_curve25519.c +++ b/src/lib/crypt_ops/crypto_curve25519.c @@ -20,7 +20,6 @@ #ifdef HAVE_SYS_STAT_H #include <sys/stat.h> #endif -#include "lib/container/container.h" #include "lib/crypt_ops/crypto_curve25519.h" #include "lib/crypt_ops/crypto_digest.h" #include "lib/crypt_ops/crypto_format.h" |