diff options
| author | Karl Heuer | 1995-01-25 02:02:37 +0000 |
|---|---|---|
| committer | Karl Heuer | 1995-01-25 02:02:37 +0000 |
| commit | 17d02632dd61ff1a42ac8461684f4dff5ecfc7cf (patch) | |
| tree | b071d2e47e7426965dc5aa9478fa25063f8f95a0 /src/process.c | |
| parent | 38ee91fe2902952f1d822f23b0b37ab2ac07efd2 (diff) | |
| download | emacs-17d02632dd61ff1a42ac8461684f4dff5ecfc7cf.tar.gz emacs-17d02632dd61ff1a42ac8461684f4dff5ecfc7cf.zip | |
(process_tick, update_tick): Make non-static.
Diffstat (limited to 'src/process.c')
| -rw-r--r-- | src/process.c | 7 |
1 files changed, 4 insertions, 3 deletions
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; | |||
| 196 | #endif | 196 | #endif |
| 197 | #endif /* SKTPAIR */ | 197 | #endif /* SKTPAIR */ |
| 198 | 198 | ||
| 199 | /* These next two vars are non-static since sysdep.c uses them in the | ||
| 200 | emulation of `select'. */ | ||
| 199 | /* Number of events of change of status of a process. */ | 201 | /* Number of events of change of status of a process. */ |
| 200 | static int process_tick; | 202 | int process_tick; |
| 201 | |||
| 202 | /* Number of events for which the user or sentinel has been notified. */ | 203 | /* Number of events for which the user or sentinel has been notified. */ |
| 203 | static int update_tick; | 204 | int update_tick; |
| 204 | 205 | ||
| 205 | #include "sysselect.h" | 206 | #include "sysselect.h" |
| 206 | 207 | ||