Enable printing of buflib allocations

Change-Id: Ie446177931032d585f69e0651f05ff88ebc6e8ba
This commit is contained in:
Thomas Jarosch 2015-01-03 16:47:27 +01:00
parent e138016256
commit e7d94323bc
4 changed files with 65 additions and 7 deletions

View file

@ -0,0 +1,28 @@
/***************************************************************************
* __________ __ ___.
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
* \/ \/ \/ \/ \/
* $Id$
*
* Copyright (C) 2015 Thomas Jarosch
*
* This program 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; either version 2
* of the License, or (at your option) any later version.
*
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
* KIND, either express or implied.
*
****************************************************************************/
#include "util.h"
#include "stdio.h"
void print_handle(int handle_num, const char *str)
{
(void)handle_num;
printf("%s\n", str);
}