1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-16 10:20:30 +00:00

Don't declare things as extern when they will be static.

Sponsored by:	Rachel Hestilow <rachel@jerkcity.com>
This commit is contained in:
Juli Mallett 2002-09-26 01:39:22 +00:00
parent 6fc15f9bdf
commit 4fed818c7e
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=103981

View File

@ -203,7 +203,11 @@ typedef struct Shell {
char *exit; /* exit on error */
} Shell;
/*
* If REMOTE is defined then these things need exposed, otherwise they are
* static to job.c!
*/
#ifdef REMOTE
extern char *targFmt; /* Format string for banner that separates
* output from multiple jobs. Contains a
* single %s where the name of the node being
@ -218,6 +222,7 @@ extern Lst jobs; /* List of active job descriptors */
extern Lst stoppedJobs; /* List of jobs that are stopped or didn't
* quite get started */
extern Boolean jobFull; /* Non-zero if no more jobs should/will start*/
#endif
void Job_Touch(GNode *, Boolean);