about summary refs log tree commit diff
path: root/Src/jobs.c
diff options
context:
space:
mode:
authorJun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp>2016-02-03 01:24:56 +0900
committerJun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp>2016-02-03 01:25:33 +0900
commita4020e10a33f3f78681a2e18fb7add56338d4e81 (patch)
tree8a189e89ca1be9c11bb7c444c57c03c35b24e7de /Src/jobs.c
parent69acac38c90559eb2138d3fd7cd852ff73a77fdd (diff)
downloadzsh-a4020e10a33f3f78681a2e18fb7add56338d4e81.tar.gz
zsh-a4020e10a33f3f78681a2e18fb7add56338d4e81.tar.xz
zsh-a4020e10a33f3f78681a2e18fb7add56338d4e81.zip
37868: add 'static' to file local variables
Diffstat (limited to 'Src/jobs.c')
-rw-r--r--Src/jobs.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/Src/jobs.c b/Src/jobs.c
index b47ba8c60..2a9dbe7d6 100644
--- a/Src/jobs.c
+++ b/Src/jobs.c
@@ -1970,9 +1970,9 @@ struct bgstatus {
 };
 typedef struct bgstatus *Bgstatus;
 /* The list of those entries */
-LinkList bgstatus_list;
+static LinkList bgstatus_list;
 /* Count of entries.  Reaches value of _SC_CHILD_MAX and stops. */
-long bgstatus_count;
+static long bgstatus_count;
 
 /*
  * Remove and free a bgstatus entry.
@@ -2372,7 +2372,7 @@ bin_fg(char *name, char **argv, Options ops, int func)
     return retval;
 }
 
-const struct {
+static const struct {
     const char *name;
     int num;
 } alt_sigs[] = {