From: Karl Heuer Date: Wed, 25 Jan 1995 02:02:37 +0000 (+0000) Subject: (process_tick, update_tick): Make non-static. X-Git-Tag: emacs-19.34~5310 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=17d02632dd61ff1a42ac8461684f4dff5ecfc7cf;p=emacs.git (process_tick, update_tick): Make non-static. --- diff --git a/src/process.c b/src/process.c index acd2d0b08fe..3f93cd807eb 100644 --- a/src/process.c +++ b/src/process.c @@ -196,11 +196,12 @@ static Lisp_Object Vprocess_connection_type; #endif #endif /* SKTPAIR */ +/* These next two vars are non-static since sysdep.c uses them in the + emulation of `select'. */ /* Number of events of change of status of a process. */ -static int process_tick; - +int process_tick; /* Number of events for which the user or sentinel has been notified. */ -static int update_tick; +int update_tick; #include "sysselect.h"