[misc] minor pre-release fixes

* mention KolibriOS in the license
* duprintf usage improvements
This commit is contained in:
Pete Batard 2014-06-03 22:16:40 +01:00
parent b9b630a84c
commit 8da527e16e
6 changed files with 20 additions and 18 deletions

View file

@ -104,8 +104,7 @@ extern void _uprintf(const char *format, ...);
#define uprintf(...) _uprintf(__VA_ARGS__)
#define vuprintf(...) if (verbose) _uprintf(__VA_ARGS__)
#define vvuprintf(...) if (verbose > 1) _uprintf(__VA_ARGS__)
#ifdef _CRTDBG_MAP_ALLOC
// Use the _CRTDBG as our general debug flag
#ifdef _DEBUG
#define duprintf(...) _uprintf(__VA_ARGS__)
#else
#define duprintf(...)