sdcc, problem with function pointers

Thread Starter

timok

Joined Dec 8, 2009
1
Hi,
I'm trying to succeed in a function pointer.
what is wrong with the sdcc compiler says:
syntax error: token -> 'code' ; column 18

#include <string.h>
char str1[10];
xdata unsigned int i;
xdata unsigned int ret;
code *call;
typedef void (code *callback); (void); // syntax error: token -> 'code'
extern callback xdata statefunc;
void main(void)
{
strcpy(str1, "testing");
}
 
Last edited:
Top