~ubuntu-branches/ubuntu/lucid/curl/lucid-201101212007

« back to all changes in this revision

Viewing changes to lib/curl_memory.h

  • Committer: Bazaar Package Importer
  • Author(s): Bhavani Shankar
  • Date: 2009-05-26 18:58:51 UTC
  • mfrom: (3.3.1 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090526185851-t1gun9nboi5kbd9u
Tags: 7.19.5-1ubuntu1
* Merge from Debian unstable (LP: #380281), remaining changes:
  - Drop build dependencies: stunnel, libdb4.6-dev, libssh2-1-dev
  - Add build-dependency on openssh-server
  - Drop libssh2-1-dev from libcurl4-openssl-dev's Depends.
  - Call automake-1.9 with --add-missing --copy --force
* Fixes LP: #379477

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef HEADER_CURL_MEMORY_H
 
2
#define HEADER_CURL_MEMORY_H
 
3
/***************************************************************************
 
4
 *                                  _   _ ____  _
 
5
 *  Project                     ___| | | |  _ \| |
 
6
 *                             / __| | | | |_) | |
 
7
 *                            | (__| |_| |  _ <| |___
 
8
 *                             \___|\___/|_| \_\_____|
 
9
 *
 
10
 * Copyright (C) 1998 - 2009, Daniel Stenberg, <daniel@haxx.se>, et al.
 
11
 *
 
12
 * This software is licensed as described in the file COPYING, which
 
13
 * you should have received as part of this distribution. The terms
 
14
 * are also available at http://curl.haxx.se/docs/copyright.html.
 
15
 *
 
16
 * You may opt to use, copy, modify, merge, publish, distribute and/or sell
 
17
 * copies of the Software, and permit persons to whom the Software is
 
18
 * furnished to do so, under the terms of the COPYING file.
 
19
 *
 
20
 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
 
21
 * KIND, either express or implied.
 
22
 *
 
23
 * $Id: curl_memory.h,v 1.1 2009-04-21 11:46:16 yangtse Exp $
 
24
 ***************************************************************************/
 
25
 
 
26
#include <curl/curl.h> /* for the typedefs */
 
27
 
 
28
extern curl_malloc_callback Curl_cmalloc;
 
29
extern curl_free_callback Curl_cfree;
 
30
extern curl_realloc_callback Curl_crealloc;
 
31
extern curl_strdup_callback Curl_cstrdup;
 
32
extern curl_calloc_callback Curl_ccalloc;
 
33
 
 
34
#ifndef CURLDEBUG
 
35
/* Only do this define-mania if we're not using the memdebug system, as that
 
36
   has preference on this magic. */
 
37
#undef strdup
 
38
#define strdup(ptr) Curl_cstrdup(ptr)
 
39
#undef malloc
 
40
#define malloc(size) Curl_cmalloc(size)
 
41
#undef calloc
 
42
#define calloc(nbelem,size) Curl_ccalloc(nbelem, size)
 
43
#undef realloc
 
44
#define realloc(ptr,size) Curl_crealloc(ptr, size)
 
45
#undef free
 
46
#define free(ptr) Curl_cfree(ptr)
 
47
 
 
48
#endif
 
49
 
 
50
#endif /* HEADER_CURL_MEMORY_H */