Sign in
gem5
/
arm
/
linux-arm64-legacy
/
858259cf7d1c443c836a2022b78cb281f0a9b95e
/
.
/
include
/
linux
/
sort.h
blob: d534da2b55750983571987b33761e09da71babc4 [
file
]
#ifndef
_LINUX_SORT_H
#define
_LINUX_SORT_H
#include
<linux/types.h>
void
sort
(
void
*
base
,
size_t
num
,
size_t
size
,
int
(*
cmp
)(
const
void
*,
const
void
*),
void
(*
swap
)(
void
*,
void
*,
int
));
#endif