From f31ad1c86b4755ef67582377762ce84fa733658b Mon Sep 17 00:00:00 2001 From: obrien Date: Wed, 13 Oct 2010 04:01:01 +0000 Subject: Consistently use "STATIC" for all functions in order to be able to set breakpoints with in a debugger. And use naked "static" for variables. Noticed by: bde --- bin/sh/mail.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bin/sh/mail.c') diff --git a/bin/sh/mail.c b/bin/sh/mail.c index 0ba7be5..597e733 100644 --- a/bin/sh/mail.c +++ b/bin/sh/mail.c @@ -57,8 +57,8 @@ __FBSDID("$FreeBSD$"); #define MAXMBOXES 10 -STATIC int nmboxes; /* number of mailboxes */ -STATIC time_t mailtime[MAXMBOXES]; /* times of mailboxes */ +static int nmboxes; /* number of mailboxes */ +static time_t mailtime[MAXMBOXES]; /* times of mailboxes */ -- cgit v1.1