1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-01-29 04:51:28 +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

@@ -146,7 +146,7 @@ LispPTR atom_instance = 0, /* various atom indices */
/* Called once to initialize the "constants" above */
LCinit(void) {
LispPTR LCinit(void) {
atom_instance = GET_IL_ATOM("instance");
atom_class = GET_IL_ATOM("class");
atom_annotatedValue = GET_IL_ATOM("annotatedValue");
@@ -350,7 +350,7 @@ LCGetIVValue(register LispPTR object, register LispPTR iv)
*/
}
LCPutIVValue(register LispPTR object, register LispPTR iv, register LispPTR val)
LispPTR LCPutIVValue(register LispPTR object, register LispPTR iv, register LispPTR val)
{
register struct LCInstance *objptr;
register LispPTR *valptr;