aboutsummaryrefslogtreecommitdiff
path: root/src/debug.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2006-08-18 23:00:08 +0000
committerChristian Grothoff <christian@grothoff.org>2006-08-18 23:00:08 +0000
commit6adb5289185c1e4f69b7bc226eca34f6623891be (patch)
tree44c0198ce61d18ac9496d58b3e9e4f0118ac00d9 /src/debug.h
parentb82c4802264edfd48c0d562e440fe4edbfb60f5d (diff)
downloadlibmicrohttpd-6adb5289185c1e4f69b7bc226eca34f6623891be.tar.gz
libmicrohttpd-6adb5289185c1e4f69b7bc226eca34f6623891be.zip
first round of API cleanup
Diffstat (limited to 'src/debug.h')
-rw-r--r--src/debug.h29
1 files changed, 0 insertions, 29 deletions
diff --git a/src/debug.h b/src/debug.h
deleted file mode 100644
index d128ab7a..00000000
--- a/src/debug.h
+++ /dev/null
@@ -1,29 +0,0 @@
1/* Copyrights 2002 Luis Figueiredo (stdio@netc.pt) All rights reserved.
2 *
3 * See the LICENSE file
4 *
5 * The origin of this software must not be misrepresented, either by
6 * explicit claim or by omission. Since few users ever read sources,
7 * credits must appear in the documentation.
8 *
9 * date: Sat Mar 30 14:16:05 GMT 2002
10 *
11 * DEBUG macros
12 *
13 */
14
15#ifndef _DEBUG_H_
16#define _DEBUG_H_
17
18#ifdef HAVE_CONFIG_H
19#include "config.h"
20#endif
21
22#ifdef DEBUG
23 #define IFDEBUG(x) x
24#else
25 #define IFDEBUG(x)
26#endif
27
28
29#endif