1234567891011121314151617181920212223242526272829303132 |
- #ifndef _DEBUG_H_
- #define _DEBUG_H_
- /*
- * Copyright (c) 2011-2012 Nokia Corporation and/or its subsidiary(-ies).
- * All rights reserved.
- * This component and the accompanying materials are made available
- * under the terms of the License "Eclipse Public License v1.0"
- * which accompanies this distribution, and is available
- * at the URL "http://www.eclipse.org/legal/epl-v10.html".
- *
- * Initial Contributors:
- * Nokia Corporation - initial contribution.
- *
- * Contributors:
- *
- * Description:
- *
- * Debugging macros
- *
- */
- #ifdef DEBUG
- #include <stdio.h>
- #define debug(format, ...) fprintf (stderr, format, __VA_ARGS__)
- #else
- #define debug(format, ...)
- #endif
- #endif
|