#ifndef TMC_H
#define TMC_H
/*===========================================================================

                    T A S K   M A I N   C O N T R O L L E R

                             H E A D E R   F I L E

DESCRIPTION
  D U M M Y

Copyright (c) 2007 by Qualcomm Technologies, Inc.  All Rights Reserved.

Export of this technology or software is regulated by the U.S. Government.
Diversion contrary to U.S. law prohibited.

===========================================================================*/

#include <stdlib.h>

#define mem_malloc(a,b)  malloc(b)
#define mem_free(a,b)    free(b)

#endif /* TMC_H */

