From 9c60701e4f39d7039da73e7dd5a36f5edade308a Mon Sep 17 00:00:00 2001 From: ocean Date: Sat, 22 Oct 2005 01:28:00 +0000 Subject: * missing.h, missing/*.c: SUSv3 compatible strcasecmp and strncasecmp, ANSI compatible strtol and strtoul, and ANSI styled other functions. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9438 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- missing/dup2.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'missing/dup2.c') diff --git a/missing/dup2.c b/missing/dup2.c index e7cc46f4c1..00d8145976 100644 --- a/missing/dup2.c +++ b/missing/dup2.c @@ -24,8 +24,7 @@ #define BADEXIT -1 int -dup2(fd1, fd2) -int fd1, fd2; +dup2(int fd1, int fd2) { #if defined(HAVE_FCNTL) && defined(F_DUPFD) if (fd1 != fd2) { -- cgit v1.2.3