mirror of
https://github.com/Interlisp/maiko.git
synced 2026-01-16 00:04:59 +00:00
As a prerequisite for cleaning up some other include issues, all the include files in inc/ should have an include guard. All the xxxdefs.h were created with them, but most older files were not.
6 lines
162 B
C
6 lines
162 B
C
#ifndef UNIXFORK_H
|
|
#define UNIXFORK_H 1
|
|
int fork_Unix(void);
|
|
int ForkUnixShell(int slot, char *PtySlave, char *termtype, char *shellarg);
|
|
#endif /* UNIXFORK_H */
|