
This patch moves more includes (most of them, to tell the truth) to common/include directory. This completes the list of includes needed to compile current trunk with the new libc (but to do that you need more patches in queue). This patch also contains some modification (for compilation with new headers) to the common includes under __NBSD_LIBC, the define used in mk script to specialize compilation with new includes.
15 lines
371 B
C
15 lines
371 B
C
/* Prototypes and definitions for network drivers. */
|
|
|
|
#ifndef _MINIX_NETDRIVER_H
|
|
#define _MINIX_NETDRIVER_H
|
|
|
|
#include <minix/endpoint.h>
|
|
#include <minix/ipc.h>
|
|
|
|
/* Functions defined by netdriver.c: */
|
|
_PROTOTYPE( void netdriver_announce, (void) );
|
|
_PROTOTYPE( int netdriver_receive, (endpoint_t src, message *m_ptr,
|
|
int *status_ptr) );
|
|
|
|
#endif /* _MINIX_NETDRIVER_H */
|