]> git.ipfire.org Git - thirdparty/squid.git/blob - lib/Splay.cc
Renamed squid.h to squid-old.h and config.h to squid.h
[thirdparty/squid.git] / lib / Splay.cc
1 /*
2 * $Id$
3 *
4 * based on ftp://ftp.cs.cmu.edu/user/sleator/splaying/top-down-splay.c
5 * http://bobo.link.cs.cmu.edu/cgi-bin/splay/splay-cgi.pl
6 */
7
8 #include "squid.h"
9
10 #if HAVE_STDIO_H
11 #include <stdio.h>
12 #endif
13 #if HAVE_STDLIB_H
14 #include <stdlib.h>
15 #endif
16 #if HAVE_UNISTD_H
17 #include <unistd.h>
18 #endif
19
20 #include "splay.h"
21 #include "util.h"
22
23 int splayLastResult = 0;