summaryrefslogtreecommitdiff
path: root/core/detect/curses.c
blob: 492277e3b785f1307f120625b6d88d12da2c1a83 (plain)
1
2
3
4
5
6
#include <curses.h>

int main()
{
    if (initscr()) return endwin();
}