~ubuntu-branches/ubuntu/precise/curl/precise-proposed

« back to all changes in this revision

Viewing changes to lib/splay.h

  • Committer: Package Import Robot
  • Author(s): Timo Aaltonen
  • Date: 2011-11-25 17:30:45 UTC
  • mfrom: (3.4.23 sid)
  • Revision ID: package-import@ubuntu.com-20111125173045-2l3ni88jv16kath0
Tags: 7.22.0-3ubuntu1
* Merge from Debian unstable, remaining changes:
  - Drop dependencies not in main:
    + Build-Depends: Drop stunnel4 and libssh2-1-dev.
    + Drop libssh2-1-dev from libcurl4-openssl-dev's Depends.
  - Add new libcurl3-udeb package.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#ifndef __SPLAY_H
2
 
#define __SPLAY_H
 
1
#ifndef HEADER_CURL_SPLAY_H
 
2
#define HEADER_CURL_SPLAY_H
3
3
/***************************************************************************
4
4
 *                                  _   _ ____  _
5
5
 *  Project                     ___| | | |  _ \| |
7
7
 *                            | (__| |_| |  _ <| |___
8
8
 *                             \___|\___/|_| \_\_____|
9
9
 *
10
 
 * Copyright (C) 1997 - 2009, Daniel Stenberg, <daniel@haxx.se>, et al.
 
10
 * Copyright (C) 1997 - 2011, Daniel Stenberg, <daniel@haxx.se>, et al.
11
11
 *
12
12
 * This software is licensed as described in the file COPYING, which
13
13
 * you should have received as part of this distribution. The terms
21
21
 * KIND, either express or implied.
22
22
 *
23
23
 ***************************************************************************/
 
24
#include "setup.h"
24
25
 
25
26
struct Curl_tree {
26
27
  struct Curl_tree *smaller; /* smaller node */
59
60
#ifdef DEBUGBUILD
60
61
void Curl_splayprint(struct Curl_tree * t, int d, char output);
61
62
#else
62
 
#define Curl_splayprint(x,y,z)
 
63
#define Curl_splayprint(x,y,z) Curl_nop_stmt
63
64
#endif
64
65
 
65
 
#endif
 
66
#endif /* HEADER_CURL_SPLAY_H */