summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSean Fox <dyntryx@gmail.com>2008-06-15 23:44:32 +0000
committerSean Fox <dyntryx@gmail.com>2008-06-15 23:44:32 +0000
commit86669218477dc1c5b7e10f724606c3191697024a (patch)
treefa5adfc233e0548411ff058c32097845056519a0
parentc5fe59c40fa863548276b851f9421ac970eb8a9d (diff)
downloadlibnsgif-86669218477dc1c5b7e10f724606c3191697024a.tar.gz
libnsgif-86669218477dc1c5b7e10f724606c3191697024a.tar.bz2
Added NetSurf's log file for debugging
svn path=/branches/dynis/libnsgif/; revision=4349
-rw-r--r--utils/log.h37
1 files changed, 37 insertions, 0 deletions
diff --git a/utils/log.h b/utils/log.h
new file mode 100644
index 0000000..d204ec9
--- /dev/null
+++ b/utils/log.h
@@ -0,0 +1,37 @@
+/*
+ * Copyright 2003 James Bursa <bursa@users.sourceforge.net>
+ * Copyright 2004 John Tytgat <John.Tytgat@aaug.net>
+ *
+ * This file is part of NetSurf, http://www.netsurf-browser.org/
+ *
+ * NetSurf is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; version 2 of the License.
+ *
+ * NetSurf is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#include <stdio.h>
+
+#ifndef _LIBNSGIF_LOG_H_
+#define _LIBNSGIF_LOG_H_
+
+#ifdef NDEBUG
+# define LOG(x) ((void) 0)
+#else
+# ifdef __GNUC__
+# define LOG(x) do { printf x, fputc('\n', stdout)); } while (0)
+# elif defined(__CC_NORCROFT)
+# define LOG(x) do { printf x, fputc('\n', stdout)); } while (0)
+# else
+# define LOG(x) do { printf x, fputc('\n', stdout)); } while (0)
+# endif
+#endif
+
+#endif