kc3-lang/libbsd/src/radixsort.c

Branch :


Log

Author Commit Date CI Message
ef5faeb5 2018-05-20 19:20:33 Update few RCS keyword contents to match BSD originals This will slightly reduce the delta, and makes it easier to compare the sources.
8e8834d8 2017-06-14 02:53:35 Remove RCSID tags These are obsolete markers, and in some cases they repeat the information already present in the comment header.
07c76b66 2017-06-05 06:17:27 Do not use legacy BSD u_* types Some systems do not have these types available, and they are simply convenience aliases. Instead use the expanded versions which are more portable. Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=101192
5a32ea0a 2016-02-07 02:47:22 Fix unportable sizeof() usage We are calculating the size of the array, and need to pass the size of each element, not the size of a pointer to an element. Although this happens to be the same in many cases, this is not a portable assumption. Warned-by: coverity
32388fe5 2014-11-03 23:21:52 Use reallocarray() instead of malloc() or realloc()
7c4caa67 2013-05-25 15:36:11 Fix comparison between signed and unsigned integer compiler warnings
30349f89 2013-05-25 15:35:39 Update radixsort module from NetBSD Merge some interesting changes.
4b95e82a 2011-02-25 18:48:10 Add new radixsort and sradixsort functions Taken from FreeBSD.