Oops forgot to checkin updated definition of function

This commit is contained in:
Jeremiah Orians 2018-08-18 15:25:47 -04:00
parent 95b1fe029f
commit 36d4632446
No known key found for this signature in database
GPG Key ID: 7457821534D2ACCD
2 changed files with 2 additions and 1 deletions

View File

@ -31,6 +31,7 @@ Broke out OUT and FUNCTION to silence a single GCC warning
** Fixed
Fixed detection of locals to screen out all non-primitive name space collisions
Checked in updated gcc function definition
** Removed
Removed redundent steps in Recursive statement

View File

@ -18,4 +18,4 @@
// Exists only because gcc doesn't support naked Function pointers
// And thus adds just enough support that M2-Plant can leverage the feature
// in its self-host
typedef struct token_list* (*FUNCTION) (struct token_list*, struct token_list*);
typedef void (*FUNCTION) ();