aboutsummaryrefslogtreecommitdiff
path: root/src/common/container.h
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2013-03-15 12:17:23 -0400
committerNick Mathewson <nickm@torproject.org>2013-03-15 12:17:23 -0400
commit0cf327dc7874ae0a021054b78cbb7b24a11aa8fe (patch)
tree7c07a17e88ebb7b6d979540dc35c2ce9f4fd1bd1 /src/common/container.h
parente4d2177d31225f5884dd94038b457dfd9954b11b (diff)
parenta4e9d672924f027c3e66220a8f70427d42154fe2 (diff)
downloadtor-0cf327dc7874ae0a021054b78cbb7b24a11aa8fe.tar
tor-0cf327dc7874ae0a021054b78cbb7b24a11aa8fe.tar.gz
Merge remote-tracking branch 'public/unused_stuff' into maint-0.2.4
Diffstat (limited to 'src/common/container.h')
-rw-r--r--src/common/container.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/common/container.h b/src/common/container.h
index e247fb7ea..1a68b8f67 100644
--- a/src/common/container.h
+++ b/src/common/container.h
@@ -675,11 +675,6 @@ median_int32(int32_t *array, int n_elements)
{
return find_nth_int32(array, n_elements, (n_elements-1)/2);
}
-static INLINE long
-median_long(long *array, int n_elements)
-{
- return find_nth_long(array, n_elements, (n_elements-1)/2);
-}
#endif