From 559c86fdfe83500564fde951ac16d3ab84634519 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Guilherme?= <75867486+Wolf3s@users.noreply.github.com> Date: Thu, 19 Dec 2024 21:17:35 -0300 Subject: [PATCH] [Maintence]: Update to latest PS2SDK --- prboom2/src/i_capture.c | 17 +---------------- 1 file changed, 1 insertion(+), 16 deletions(-) diff --git a/prboom2/src/i_capture.c b/prboom2/src/i_capture.c index 7b1e7c13d..32cf08278 100644 --- a/prboom2/src/i_capture.c +++ b/prboom2/src/i_capture.c @@ -328,21 +328,6 @@ typedef struct int pid; } puser_t; -#ifdef __PS2__ -int pipe (int __fildes[2]) -{ - (void)__fildes[2]; - return 0; -} - -pid_t waitpid (pid_t, int *, int) -{ - - return 0; -} - -#endif - static int my_popen3 (pipeinfo_t *p) { FILE *fin = NULL; @@ -366,7 +351,7 @@ static int my_popen3 (pipeinfo_t *p) return 0; - + // make the pipes if (pipe (scratch)) goto fail;