/* vscrollu.c (emx+gcc) -- Copyright (c) 1987-1993 by Eberhard Mattes */

#include <stdlib.h>
#include <dos.h>
#define INCL_VIO
#include <os2emx.h>
#include <sys/video.h>
#include "video2.h"

void v_scrollup (void)
{
  v_scroll (0, 0, _v_width-1, _v_height-1, 1, V_SCROLL_UP);
}
