add ncurses wrapper

This commit is contained in:
Emile Clark-Boman 2025-09-10 22:49:05 +10:00
parent 361d63be94
commit c3074a75eb
3 changed files with 99 additions and 1 deletions

View file

@ -55,7 +55,7 @@ int mkpty(int *fdmx, int *fds) {
goto fail;
}
// Propagate file descriptors via parameters
/* Propagate file descriptors via parameters */
*fdmx = _fdmx;
*fds = _fds;
return EXIT_SUCCESS;