summaryrefslogtreecommitdiff
path: root/usr.sbin/sendmail/src
diff options
context:
space:
mode:
authormycroft <mycroft@NetBSD.org>1993-04-18 20:50:22 +0000
committermycroft <mycroft@NetBSD.org>1993-04-18 20:50:22 +0000
commit11a76ec00fc7598f0e2a3d4b28830b95598be34f (patch)
tree7a3634d1c9482ab30cb784e4525d5d609fef9527 /usr.sbin/sendmail/src
parentebe96c307cd9199374403e2678b6db24f9d312f7 (diff)
Cleanup for GCC 2.
Diffstat (limited to 'usr.sbin/sendmail/src')
-rw-r--r--usr.sbin/sendmail/src/headers.c1
-rw-r--r--usr.sbin/sendmail/src/queue.c3
2 files changed, 4 insertions, 0 deletions
diff --git a/usr.sbin/sendmail/src/headers.c b/usr.sbin/sendmail/src/headers.c
index 02950f08126..443270a72be 100644
--- a/usr.sbin/sendmail/src/headers.c
+++ b/usr.sbin/sendmail/src/headers.c
@@ -725,6 +725,7 @@ commaize(h, p, fp, oldstyle, m)
int opos;
bool firstone = TRUE;
char obuf[MAXLINE + 3];
+ extern char *capitalize();
/*
** Output the address list translated by the
diff --git a/usr.sbin/sendmail/src/queue.c b/usr.sbin/sendmail/src/queue.c
index 03b226a97c7..211d0c07304 100644
--- a/usr.sbin/sendmail/src/queue.c
+++ b/usr.sbin/sendmail/src/queue.c
@@ -431,6 +431,7 @@ orderq(doall)
WORK wlist[QUEUESIZE+1];
int wn = -1;
extern workcmpf();
+ extern bool shouldqueue();
/* clear out old WorkQ */
for (w = WorkQ; w != NULL; )
@@ -912,6 +913,8 @@ printqueue()
cbuf[0] = '\0';
while (fgets(buf, sizeof buf, f) != NULL)
{
+ extern long atol();
+
fixcrlf(buf, TRUE);
switch (buf[0])
{