1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-01-14 07:30:21 +00:00

fix warning: a function declaration without a prototype is deprecated in all versions of C

This commit is contained in:
Nick Briggs 2022-12-11 19:06:18 -08:00
parent 89a2b73d33
commit 76cb36993c

View File

@ -192,7 +192,7 @@ of the packet received except:
C: Always the same
*/
int fork_Unix() {
int fork_Unix(void) {
int LispToUnix[2], /* Incoming pipe from LISP */
UnixToLisp[2], /* Outgoing pipe to LISP */
UnixPID, LispPipeIn, LispPipeOut, slot;