diff options
author | Nick Mathewson <nickm@torproject.org> | 2013-02-23 23:31:31 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2013-02-23 23:31:31 -0500 |
commit | 5bfa373eeeb2d76879fe8b0ea130724176f54e81 (patch) | |
tree | f3485ceec073bb6ed01a5a167c48096116115d08 /src/common/container.h | |
parent | 365e302f6153a99fc79b7bad8fafa1d61e839e55 (diff) | |
download | tor-5bfa373eeeb2d76879fe8b0ea130724176f54e81.tar.gz tor-5bfa373eeeb2d76879fe8b0ea130724176f54e81.zip |
Remove some totally unused functions
Diffstat (limited to 'src/common/container.h')
-rw-r--r-- | src/common/container.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/common/container.h b/src/common/container.h index e247fb7ea6..1a68b8f67b 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 |