Commit 3d085927 authored by marko's avatar marko

branches/zip: Disable unused function ut_dulint_sort().

parent 79c2ea85
...@@ -12,14 +12,15 @@ Created 5/11/1994 Heikki Tuuri ...@@ -12,14 +12,15 @@ Created 5/11/1994 Heikki Tuuri
#include "ut0byte.ic" #include "ut0byte.ic"
#endif #endif
#include "ut0sort.h"
/* Zero value for a dulint */ /* Zero value for a dulint */
dulint ut_dulint_zero = {0, 0}; dulint ut_dulint_zero = {0, 0};
/* Maximum value for a dulint */ /* Maximum value for a dulint */
dulint ut_dulint_max = {0xFFFFFFFFUL, 0xFFFFFFFFUL}; dulint ut_dulint_max = {0xFFFFFFFFUL, 0xFFFFFFFFUL};
#ifdef notdefined /* unused code */
#include "ut0sort.h"
/**************************************************************** /****************************************************************
Sort function for dulint arrays. */ Sort function for dulint arrays. */
void void
...@@ -29,3 +30,4 @@ ut_dulint_sort(dulint* arr, dulint* aux_arr, ulint low, ulint high) ...@@ -29,3 +30,4 @@ ut_dulint_sort(dulint* arr, dulint* aux_arr, ulint low, ulint high)
UT_SORT_FUNCTION_BODY(ut_dulint_sort, arr, aux_arr, low, high, UT_SORT_FUNCTION_BODY(ut_dulint_sort, arr, aux_arr, low, high,
ut_dulint_cmp); ut_dulint_cmp);
} }
#endif /* notdefined */
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment