C
Posted: Wed Feb 02, 2005 6:19 am
Hi,
i've got some trouble with 2 c code:
i can't understand what it's been defined with that. what's the use of de last (void) ?
This one is taken from the the pdf in osdever.net. Can anyone explainme that?
Thanks far all.
i've got some trouble with 2 c code:
Code: Select all
typedef void (*syscall_func)(void);
Code: Select all
static union header {
struct {
union header *link;
unsigned size;
} s;
union align {
double d; unsigned u; void (*f)(void);
} x;
} freelist = { &freelist, 0 }, *freep = &freelist;
Thanks far all.