mescc: Mes C Library: Prepare for M2-Planet: dup.

* lib/linux/dup.c (dup): Prepare for M2-Planet.
This commit is contained in:
Jan (janneke) Nieuwenhuizen 2020-07-25 19:54:02 +02:00 committed by Jan Nieuwenhuizen
parent ad3b38ab48
commit 6b3b07e637
1 changed files with 2 additions and 1 deletions

View File

@ -24,5 +24,6 @@
int
dup (int old)
{
return _sys_call1 (SYS_dup, (int) old);
long long_old = old;
return _sys_call1 (SYS_dup, long_old);
}