1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-01-26 03:51:32 +00:00

fix missing return type on fork_Unix. Declare time() -- where does it really come from?

This commit is contained in:
Nick Briggs
2017-06-26 21:29:39 -07:00
parent f319f2edd4
commit 7c1e783509

View File

@@ -296,7 +296,9 @@ of the packet received except:
*/
fork_Unix() {
long time(long); /* XXX where does time come from? */
int fork_Unix() {
int LispToUnix[2], /* Incoming pipe from LISP */
UnixToLisp[2], /* Outgoing pipe to LISP */
UnixPID, LispPipeIn, LispPipeOut, res, slot;