/*
  Copyright (c) 2014, Alexey Frunze
  2-clause BSD license.
*/
#include <stdio.h>

int getc(FILE* f)
{
  return fgetc(f);
}
