/* vgetxy.c (emx+gcc) -- Copyright (c) 1987-1993 by Eberhard Mattes */

#include <sys/video.h>
#include "video2.h"

void v_getxy (int *x, int *y)
{
  *x = _v_x;
  *y = _v_y;
}
