From 86669218477dc1c5b7e10f724606c3191697024a Mon Sep 17 00:00:00 2001 From: Sean Fox Date: Sun, 15 Jun 2008 23:44:32 +0000 Subject: Added NetSurf's log file for debugging svn path=/branches/dynis/libnsgif/; revision=4349 --- utils/log.h | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 utils/log.h 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 + * Copyright 2004 John Tytgat + * + * 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 _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 -- cgit v1.2.3