summaryrefslogtreecommitdiff
path: root/bin/sh/memalloc.c
diff options
context:
space:
mode:
authorDiomidis Spinellis <dds@FreeBSD.org>2003-07-05 15:18:44 +0000
committerDiomidis Spinellis <dds@FreeBSD.org>2003-07-05 15:18:44 +0000
commit2ba1b30bf50f04ab147452cfba7a3b9899f1d59c (patch)
treeb3c2aa55b49d1fcca627aec69e1e5a16b264b51d /bin/sh/memalloc.c
parentcf3574284719d98bca0fa10588677f35f2e8202f (diff)
downloadsrc-test2-2ba1b30bf50f04ab147452cfba7a3b9899f1d59c.tar.gz
src-test2-2ba1b30bf50f04ab147452cfba7a3b9899f1d59c.zip
Notes
Diffstat (limited to 'bin/sh/memalloc.c')
-rw-r--r--bin/sh/memalloc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/sh/memalloc.c b/bin/sh/memalloc.c
index cfe087e908d0..6334290bd10d 100644
--- a/bin/sh/memalloc.c
+++ b/bin/sh/memalloc.c
@@ -113,8 +113,8 @@ struct stack_block {
};
#define SPACE(sp) ((char*)(sp) + ALIGN(sizeof(struct stack_block)))
-struct stack_block *stackp;
-struct stackmark *markp;
+STATIC struct stack_block *stackp;
+STATIC struct stackmark *markp;
char *stacknxt;
int stacknleft;
int sstrnleft;