mirror of
https://github.com/SEPPDROID/Digital-Research-Source-Code.git
synced 2025-10-23 16:34:07 +00:00
10 lines
155 B
C
10 lines
155 B
C
/*
|
|
* El-Kludg-o Dup routine. Takes advantage of the fact that
|
|
* stdout is not closed by Bill Allen's stuff.
|
|
*/
|
|
dup(n)
|
|
register int n;
|
|
{
|
|
return(n);
|
|
}
|