#include <stdio.h>
#include "ttf2pk.h"
#include "error.h"

void Error_throw(error_type er,...)
{
}

char *ttf_alloc(int size)
{
  char *d = (char *) malloc(size);
  if (d == NULL)
    Error_throw(error_out_of_memory);
  return d;
}
