diff options
author | Adam Jackson <ajax@benzedrine.nwnk.net> | 2007-03-25 12:27:01 -0400 |
---|---|---|
committer | Adam Jackson <ajax@benzedrine.nwnk.net> | 2007-03-25 12:27:01 -0400 |
commit | 9a0f25de7ca3c68af867b38936103d17daa92ac6 (patch) | |
tree | c218f5b04f879f6342332618dddb96d6d7b7506c /os/io.c | |
parent | ac2356843e38b3400142bc54b65393c12976fc07 (diff) |
Static cleanups, dead code deletion.
Diffstat (limited to 'os/io.c')
-rw-r--r-- | os/io.c | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -111,11 +111,11 @@ _X_EXPORT CallbackListPtr FlushCallback; #define ETEST(err) (err == EAGAIN || err == EWOULDBLOCK || err == ENOSPC) #endif -Bool CriticalOutputPending; -int timesThisConnection = 0; -ConnectionInputPtr FreeInputs = (ConnectionInputPtr)NULL; -ConnectionOutputPtr FreeOutputs = (ConnectionOutputPtr)NULL; -OsCommPtr AvailableInput = (OsCommPtr)NULL; +static Bool CriticalOutputPending; +static int timesThisConnection = 0; +static ConnectionInputPtr FreeInputs = (ConnectionInputPtr)NULL; +static ConnectionOutputPtr FreeOutputs = (ConnectionOutputPtr)NULL; +static OsCommPtr AvailableInput = (OsCommPtr)NULL; #define get_req_len(req,cli) ((cli)->swapped ? \ lswaps((req)->length) : (req)->length) |