~ubuntu-branches/ubuntu/raring/curl/raring-updates

« back to all changes in this revision

Viewing changes to lib/sendf.h

  • Committer: Package Import Robot
  • Author(s): Alessandro Ghedini
  • Date: 2011-11-13 21:07:32 UTC
  • mto: (3.6.1 experimental) (1.3.1)
  • mto: This revision was merged to the branch mainline in revision 55.
  • Revision ID: package-import@ubuntu.com-20111113210732-bk5n25x2tu7aplur
Tags: upstream-7.22.0
ImportĀ upstreamĀ versionĀ 7.22.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
 *                            | (__| |_| |  _ <| |___
8
8
 *                             \___|\___/|_| \_\_____|
9
9
 *
10
 
 * Copyright (C) 1998 - 2010, Daniel Stenberg, <daniel@haxx.se>, et al.
 
10
 * Copyright (C) 1998 - 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
32
32
#if defined(CURL_DISABLE_VERBOSE_STRINGS)
33
33
 
34
34
#if defined(HAVE_VARIADIC_MACROS_C99)
35
 
#define infof(...)  do { } while (0)
 
35
#define infof(...)  Curl_nop_stmt
36
36
#elif defined(HAVE_VARIADIC_MACROS_GCC)
37
 
#define infof(x...)  do { } while (0)
 
37
#define infof(x...)  Curl_nop_stmt
38
38
#else
39
39
#define infof (void)
40
40
#endif