Compilation targeting c64

Adds some casts required by cc65 compiler and small fixes
This commit is contained in:
Tiago Koji Castro Shibata 2015-09-17 22:38:11 -03:00
parent 8e6c6cc45b
commit c2a0f739f7
5 changed files with 20 additions and 3 deletions

View file

@ -42,6 +42,10 @@ struct ethernet_config {
PROCESS_NAME(ethernet_process);
#if NETSTACK_CONF_WITH_IPV6
uint8_t ethernet_output(const uip_lladdr_t *);
#else
uint8_t ethernet_output(void);
#endif
#endif /* ETHERNET_DRV_H_ */