1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-05-06 00:04:26 +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

@@ -19,14 +19,14 @@ static char *id = "$Id: usrsubr.c,v 1.3 1999/05/31 23:35:46 sybalsky Exp $ Copyr
#include "version.h"
#include <stdio.h>
/** User defined subrs here. Do NOT attempt to use this unless you FULLY
understand the dependencies of the LDE architecture. **/
#define DO_UFN {return(-1);}
UserSubr(int user_subr_index, int num_args, int *args)
int UserSubr(int user_subr_index, int num_args, int *args)
{
int result = 0;