1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-03-01 17:35:54 +00:00

Fix missing return types on functions, convert some functions with always ignored results to void.

This commit is contained in:
Nick Briggs
2017-05-28 15:08:42 -07:00
parent 65ddb5a968
commit 691645d048
83 changed files with 587 additions and 549 deletions

View File

@@ -51,7 +51,7 @@ static char *id = "@(#) array4.c 2.7 10/12/88";
/* */
/************************************************************************/
N_OP_aset1(register LispPTR data, LispPTR arrayarg, register int inx)
LispPTR N_OP_aset1(register LispPTR data, LispPTR arrayarg, register int inx)
{
register int type;
register OneDArray *arrayblk;