/* fgetchar.c (emx+gcc) -- Copyright (c) 1990-1993 by Eberhard Mattes */

#include <stdio.h>

int fgetchar (void)
{
  return (getchar ());
}
