mirror of
https://github.com/Interlisp/maiko.git
synced 2026-01-13 23:27:12 +00:00
... start by fixing the include files and the fallout in C source from removing includes not directly needed by headers that previously included them.
18 lines
525 B
C
18 lines
525 B
C
#ifndef ETHERDEFS_H
|
|
#define ETHERDEFS_H 1
|
|
#include "lispemul.h" /* for LispPTR */
|
|
LispPTR ether_suspend(LispPTR args[]);
|
|
LispPTR ether_resume(LispPTR args[]);
|
|
LispPTR ether_ctrlr(LispPTR args[]);
|
|
LispPTR ether_reset(LispPTR args[]);
|
|
LispPTR get_packet(void);
|
|
LispPTR ether_get(LispPTR args[]);
|
|
LispPTR ether_send(LispPTR args[]);
|
|
LispPTR ether_setfilter(LispPTR args[]);
|
|
int *ether_debug(void);
|
|
LispPTR check_ether(void);
|
|
void init_ifpage_ether(void);
|
|
void init_ether(void);
|
|
LispPTR check_sum(register LispPTR *args);
|
|
#endif
|