1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-04-28 21:18:15 +00:00
Files
Interlisp.maiko/inc/unixcommdefs.h
Nick Briggs c60b522012 Files should explicitly include the definitions they directly depend on (#355)
... start by fixing the include files and the fallout in C source from
removing includes not directly needed by headers that previously included
them.
2021-02-13 21:41:31 -08:00

14 lines
450 B
C

#ifndef UNIXCOMMDEFS_H
#define UNIXCOMMDEFS_H 1
#include "lispemul.h" /* for LispPTR */
int find_process_slot(register int pid);
void wait_for_comm_processes(void);
char *build_socket_pathname(int desc);
void close_unix_descriptors(void);
int FindUnixPipes(void);
int FindAvailablePty(char *Master, char *Slave);
void WriteLispStringToPipe(LispPTR lispstr);
LispPTR Unix_handlecomm(LispPTR *args);
void WriteLispStringToPipe(LispPTR lispstr);
#endif