Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion detok/detok.c
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ bool show_offsets = false;
* TRUE preceding error-exit */
static void print_copyright(bool is_error)
{
typedef void (*vfunct) (); /* Pointer to function returning void */
typedef void (*vfunct) (char *); /* Pointer to function returning void */
vfunct pfunct;
char buffr[512];

Expand Down
2 changes: 1 addition & 1 deletion toke/conditl.c
Original file line number Diff line number Diff line change
Expand Up @@ -594,7 +594,7 @@ static void conditionally_tokenize( bool cond, bool alr_ign )

static void conditional_word_in_line( bool alr_ign,
bool exist_test,
bool (*exist_funct)() )
bool (*exist_funct)(char *) )
{
if ( get_word_in_line( statbuf) )
{
Expand Down
2 changes: 1 addition & 1 deletion toke/nextfcode.c
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ void list_fcode_ranges( bool final_tally)
}else{ /* List the collection of Ranges */

/* Pionter to function returning void */
typedef void (*vfunct)();
typedef void (*vfunct)(char *, unsigned int);

/* Function for the started_at() part of the message */
vfunct start_at_funct =
Expand Down
2 changes: 1 addition & 1 deletion toke/scanner.c
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ typedef struct source_state
unsigned int old_lineno;
bool pause_before_pop;
bool sav_rep_multlin;
void (*resump_func)();
void (*resump_func)(_PTR);
_PTR resump_param;
} source_state_t ;

Expand Down
4 changes: 2 additions & 2 deletions toke/ticvocab.h
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ typedef struct tic_hdr
{
char *name;
struct tic_hdr *next;
void (*funct)(); /* Function for active processing */
void (*funct)(tic_param_t); /* Function for active processing */
tic_param_t pfield;
fwtoken fword_defr; /* FWord Token of entry's Definer */
bool is_token; /* Is entry a single-token FCode? */
Expand Down Expand Up @@ -278,7 +278,7 @@ typedef struct tic_bool_hdr
tic_bool_param_t pfield;
fwtoken fword_defr;
bool is_token; /* Is entry a single-token FCode? */
void (*ign_func)();
void (*ign_func)(tic_bool_param_t);
int pfld_size;
bool tracing; /* TRUE if Invoc'n Msg required */
} tic_bool_hdr_t ;
Expand Down