From: Carl Smith Date: Thu, 21 Oct 1982 21:54:43 +0000 (-0800) Subject: Changes to support long mail sizes (long m_size). X-Git-Tag: BSD-4_1c_2-Snapshot-Development~2128 X-Git-Url: https://git.subgeniuskitty.com/unix-history/.git/commitdiff_plain/ee0b03d544d515f8c36168a34b91fb0d7c2e3044 Changes to support long mail sizes (long m_size). Inserted a null definition of sigchild() if SIGRETRO is undefined. Deleted declaration of msize(). Changed declaration of transmit() to long. SCCS-vsn: usr.bin/mail/def.h 2.8 --- diff --git a/usr/src/usr.bin/mail/def.h b/usr/src/usr.bin/mail/def.h index 39f1bf9fd1..3e45fa44fe 100644 --- a/usr/src/usr.bin/mail/def.h +++ b/usr/src/usr.bin/mail/def.h @@ -10,7 +10,7 @@ #undef isdigit /* - * Sccs Id = "@(#)def.h 2.7 %G%"; + * Sccs Id = "@(#)def.h 2.8 %G%"; */ /* @@ -50,7 +50,7 @@ struct message { short m_flag; /* flags, see below */ short m_block; /* block number of this message */ short m_offset; /* offset in block of message */ - unsigned m_size; /* Bytes in the message */ + long m_size; /* Bytes in the message */ short m_lines; /* Lines in the message */ }; @@ -243,6 +243,9 @@ struct ignore { #ifndef VMUNIX #define vfork() fork() #endif +#ifndef SIGRETRO +#define sigchild() +#endif /* * Forward declarations of routine types to keep lint and cc happy. @@ -303,4 +306,4 @@ struct name *put(); struct name *usermap(); struct name *verify(); struct var *lookup(); -unsigned int msize(); +long transmit();