mirror of
https://github.com/Interlisp/maiko.git
synced 2026-01-13 15:18:14 +00:00
make savestr() static and remove it from dlpidefs.h since it is not used outside of dlpi.c
9 lines
293 B
C
9 lines
293 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);
|
|
int dlunitdatareq(int fd, u_char *addrp, int addrlen, u_long minpri, u_long maxpri, u_char *datap, int datalen);
|
|
#endif
|