From 701b5113963324efe386807130201dd4a4c72145 Mon Sep 17 00:00:00 2001 From: Sean Fox Date: Wed, 18 Jun 2008 23:32:07 +0000 Subject: Added NetSurf's log file for debugging svn path=/branches/dynis/libnsbmp/; revision=4400 --- utils/log.h | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 utils/log.h diff --git a/utils/log.h b/utils/log.h new file mode 100644 index 0000000..18b68d0 --- /dev/null +++ b/utils/log.h @@ -0,0 +1,38 @@ +/* + * Copyright 2003 James Bursa + * Copyright 2004 John Tytgat + * Copyright 2008 Sean Fox + * + * 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 . + */ + +#include + +#ifndef _LIBNSBMP_LOG_H_ +#define _LIBNSBMP_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 -- cgit v1.2.3