/*
 * =====================================================================================
 *
 *       Filename:  t.cpp
 *
 *    Description:  
 *
 *        Version:  1.0
 *        Created:  23/06/2009 01:26:29
 *       Revision:  none
 *       Compiler:  gcc
 *
 *         Author:  John Ryland (jryland), jryland@xiaofrog.com
 *        Company:  InvertedLogic
 *
 * =====================================================================================
 */

#include "DebugMemory.h"


void function(int size)
{
    int *k = new int[size];
}


