hscurses-1.3: cbits/HSCursesUtils.c
#include "HSCursesUtils.h"
/*
* A non-macro version of getyx(3), to make writing a Haskell binding
* easier. Called in UI/HSCurses/Curses.hsc
*/
void hscurses_nomacro_getyx(WINDOW *win, int *y, int *x)
{
getyx(win, *y, *x);
}