1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-01-16 08:15:31 +00:00

A couple of variables that should be static rather than global in unixfork.c

This commit is contained in:
Nick Briggs 2022-08-12 22:55:06 -07:00
parent fff53ba224
commit c07ad9fe8e

View File

@ -45,13 +45,11 @@
int flushing = 0;
#endif
/* The following globals are used to communicate between Unix
subprocesses and LISP */
/* Used to communicate between Unix subprocesses and LISP */
long StartTime; /* Time, for creating pipe filenames */
char shcom[512]; /* Here because I'm suspicious of */
/* large allocations on the stack */
static long StartTime; /* Time, for creating pipe filenames */
static char shcom[512]; /* Here because I'm suspicious of */
/* large allocations on the stack */
static inline ssize_t SAFEREAD(int f, char *b, int c)