mirror of
https://github.com/Interlisp/maiko.git
synced 2026-01-19 01:17:36 +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.
10 lines
317 B
C
10 lines
317 B
C
#ifndef DLPIDEFS_H
|
|
#define DLPIDEFS_H 1
|
|
#include <sys/types.h> /* for u_char, u_long */
|
|
int setup_dlpi_dev(char *device);
|
|
void flush_dlpi(int fd);
|
|
int dlpi_devtype(int fd);
|
|
char *savestr(char *s);
|
|
int dlunitdatareq(int fd, u_char *addrp, int addrlen, u_long minpri, u_long maxpri, u_char *datap, int datalen);
|
|
#endif
|