changed the return type of close_pipes from int to void in std.c

This commit is contained in:
hyunghwan.chung 2019-10-10 15:09:44 +00:00
parent d5384b8b82
commit 1a10655784

View File

@ -2263,7 +2263,7 @@ static int open_pipes (moo_t* moo, int p[2])
return 0;
}
static int close_pipes (moo_t* moo, int p[2])
static void close_pipes (moo_t* moo, int p[2])
{
#if defined(_WIN32)
_close (p[0]);