aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/mail
diff options
context:
space:
mode:
authorEd Schouten <ed@FreeBSD.org>2011-12-13 13:32:56 +0000
committerEd Schouten <ed@FreeBSD.org>2011-12-13 13:32:56 +0000
commitf6ab8089c6f3c01370add0f7e9a940b8bfbc8ee5 (patch)
treeff467d16b69860d02d290f3c005240ea4a39828c /usr.bin/mail
parent1c6eeddad9c719854ab7a078ab24bbdf6a7ffed3 (diff)
Notes
Diffstat (limited to 'usr.bin/mail')
-rw-r--r--usr.bin/mail/extern.h2
-rw-r--r--usr.bin/mail/lex.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/mail/extern.h b/usr.bin/mail/extern.h
index f5f28720745ec..2578d65b78c7d 100644
--- a/usr.bin/mail/extern.h
+++ b/usr.bin/mail/extern.h
@@ -154,7 +154,7 @@ int ishead(char []);
int isign(const char *, struct ignoretab []);
int isprefix(const char *, const char *);
void istrncpy(char *, const char *, size_t);
-__const struct cmd *
+const struct cmd *
lex(char []);
void load(char *);
struct var *
diff --git a/usr.bin/mail/lex.c b/usr.bin/mail/lex.c
index 32320014e59f4..4d799e71283a5 100644
--- a/usr.bin/mail/lex.c
+++ b/usr.bin/mail/lex.c
@@ -482,7 +482,7 @@ setmsize(int sz)
* to the passed command "word"
*/
-__const struct cmd *
+const struct cmd *
lex(char word[])
{
const struct cmd *cp;