/* tfree.c (emx+gcc) -- Copyright (c) 1993 by Eberhard Mattes */

#include <stdlib.h>
#include "malloc2.h"

void _tfree (void *mem)
{
  if (mem != NULL)
    FREE (mem);
}
