Changeset 98000fb in mainline for kernel/generic/include/sort.h


Ignore:
Timestamp:
2009-06-03T19:34:45Z (15 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
301ff30
Parents:
69e68e3
Message:

remove redundant index_t and count_t types (which were always quite ambiguous and not actually needed)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/include/sort.h

    r69e68e3 r98000fb  
    4141 * sorting routines
    4242 */
    43 extern void bubblesort(void * data, count_t n, size_t e_size, int (* cmp) (void * a, void * b));
    44 extern void qsort(void * data, count_t n, size_t e_size, int (* cmp) (void * a, void * b));
     43extern void bubblesort(void * data, size_t n, size_t e_size, int (* cmp) (void * a, void * b));
     44extern void qsort(void * data, size_t n, size_t e_size, int (* cmp) (void * a, void * b));
    4545
    4646/*
Note: See TracChangeset for help on using the changeset viewer.