]> git.ipfire.org Git - thirdparty/squid.git/blob - lib/Splay.cc
Merged from trunk (r13356).
[thirdparty/squid.git] / lib / Splay.cc
1 /*
2 * based on ftp://ftp.cs.cmu.edu/user/sleator/splaying/top-down-splay.c
3 * http://bobo.link.cs.cmu.edu/cgi-bin/splay/splay-cgi.pl
4 */
5
6 #include "squid.h"
7
8 #include <cstdlib>
9 #if HAVE_UNISTD_H
10 #include <unistd.h>
11 #endif
12
13 #include "splay.h"
14 #include "util.h"
15
16 int splayLastResult = 0;