[BACK]Return to def.h CVS log [TXT][DIR] Up to [local] / src / usr.bin / mail

Diff for /src/usr.bin/mail/def.h between version 1.4 and 1.5

version 1.4, 1997/03/29 03:01:45 version 1.5, 1997/07/13 21:21:10
Line 1 
Line 1 
 /*      $OpenBSD$       */  /*      $OpenBSD$       */
 /*      $NetBSD: def.h,v 1.8 1996/06/08 19:48:18 christos Exp $ */  /*      $NetBSD: def.h,v 1.9 1996/12/28 07:11:00 tls Exp $      */
 /*  /*
  * Copyright (c) 1980, 1993   * Copyright (c) 1980, 1993
  *      The Regents of the University of California.  All rights reserved.   *      The Regents of the University of California.  All rights reserved.
Line 32 
Line 32 
  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF   * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  * SUCH DAMAGE.   * SUCH DAMAGE.
  *   *
  *      @(#)def.h       8.2 (Berkeley) 3/21/94   *      @(#)def.h       8.4 (Berkeley) 4/20/95
  *      $NetBSD: def.h,v 1.8 1996/06/08 19:48:18 christos Exp $   *      $OpenBSD$
  */   */
   
 /*  /*
Line 46 
Line 46 
 #include <sys/stat.h>  #include <sys/stat.h>
 #include <sys/time.h>  #include <sys/time.h>
   
   #include <ctype.h>
   #include <err.h>
 #include <signal.h>  #include <signal.h>
 #include <termios.h>  
 #include <unistd.h>  
 #include <stdlib.h>  
 #include <stdio.h>  #include <stdio.h>
 #include <ctype.h>  #include <stdlib.h>
 #include <string.h>  #include <string.h>
   #include <termios.h>
   #include <unistd.h>
 #include "pathnames.h"  #include "pathnames.h"
   
 #define APPEND                          /* New mail goes to end of mailbox */  #define APPEND                          /* New mail goes to end of mailbox */
Line 71 
Line 72 
   
 struct message {  struct message {
         short   m_flag;                 /* flags, see below */          short   m_flag;                 /* flags, see below */
         int     m_block;                /* block number of this message */  
         int     m_offset;               /* offset in block of message */          int     m_offset;               /* offset in block of message */
           int     m_block;                /* block number of this message */
         int     m_size;                 /* Bytes in the message */          int     m_size;                 /* Bytes in the message */
         int     m_lines;                /* Lines in the message */          int     m_lines;                /* Lines in the message */
 };  };

Legend:
Removed from v.1.4  
changed lines
  Added in v.1.5