mirror of
https://github.com/Interlisp/maiko.git
synced 2026-01-11 23:43:19 +00:00
* ForkUnixShell() can be a static procedure * Restructure SAFEREAD() to be a little clearer * Convert unixjob type field defines to an enum and fix related unhandled switch cases. * Use local declaration of loop variables in for-loop, removing register attributes * Restructure SAFEREAD() to be a little clearer * Send and receive 2 additional bytes for pid. * Prefer standard C99 "inline" over "__inline__" for SAFEREAD
5 lines
85 B
C
5 lines
85 B
C
#ifndef UNIXFORK_H
|
|
#define UNIXFORK_H 1
|
|
int fork_Unix(void);
|
|
#endif /* UNIXFORK_H */
|