[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.13 and 1.14

version 1.13, 2003/06/25 15:13:32 version 1.14, 2015/01/16 06:40:09
Line 42 
Line 42 
 #ifndef MAIL_DEF_H  #ifndef MAIL_DEF_H
 #define MAIL_DEF_H  #define MAIL_DEF_H
   
 #include <sys/param.h>  
 #include <sys/stat.h>  #include <sys/stat.h>
 #include <sys/time.h>  #include <sys/time.h>
   
Line 54 
Line 53 
 #include <string.h>  #include <string.h>
 #include <termios.h>  #include <termios.h>
 #include <unistd.h>  #include <unistd.h>
   #include <limits.h>
 #include <vis.h>  #include <vis.h>
 #include "pathnames.h"  #include "pathnames.h"
   
Line 61 
Line 61 
   
 #define ESCAPE          '~'             /* Default escape for sending */  #define ESCAPE          '~'             /* Default escape for sending */
 #define NMLSIZE         1024            /* max names in a message list */  #define NMLSIZE         1024            /* max names in a message list */
 #define PATHSIZE        MAXPATHLEN      /* Size of pathnames throughout */  #define PATHSIZE        PATH_MAX        /* Size of pathnames throughout */
 #define HSHSIZE         59              /* Hash size for aliases and vars */  #define HSHSIZE         59              /* Hash size for aliases and vars */
 #define LINESIZE        BUFSIZ          /* max readable line width */  #define LINESIZE        BUFSIZ          /* max readable line width */
 #define STRINGSIZE      ((unsigned) 128)/* Dynamic allocation units */  #define STRINGSIZE      ((unsigned) 128)/* Dynamic allocation units */

Legend:
Removed from v.1.13  
changed lines
  Added in v.1.14