Minimal Working Example of a program that segfaults on a musl system.

    #include <curses.h>
    int main()
    {
        initscr();
        MEVENT m;
        ungetmouse(&m);
    }

Regards.