blob: 149f7feafd1f4da1172b29a2fec5c7ca905c12d4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/*
* A generic implementation of binary search for the Linux kernel
*
* Copyright (C) 2008-2009 Ksplice, Inc.
* Author: Tim Abbott <tabbott@ksplice.com>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; version 2.
*/
#define BSEARCH_IMPLEMENTATION
#include <xen/lib.h>
|