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:
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user