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

Diff for /src/usr.bin/mail/strings.c between version 1.6 and 1.7

version 1.6, 1997/11/14 00:23:58 version 1.7, 2001/11/21 15:26:39
Line 36 
Line 36 
   
 #ifndef lint  #ifndef lint
 #if 0  #if 0
 static char sccsid[] = "@(#)strings.c   8.1 (Berkeley) 6/6/93";  static const char sccsid[] = "@(#)strings.c     8.1 (Berkeley) 6/6/93";
 #else  #else
 static char rcsid[] = "$OpenBSD$";  static const char rcsid[] = "$OpenBSD$";
 #endif  #endif
 #endif /* not lint */  #endif /* not lint */
   
Line 60 
Line 60 
  * The string spaces are of exponentially increasing size, to satisfy   * The string spaces are of exponentially increasing size, to satisfy
  * the occasional user with enormous string size requests.   * the occasional user with enormous string size requests.
  */   */
   
 char *  char *
 salloc(size)  salloc(int size)
         int size;  
 {  {
         char *t;          char *t;
         int s;          int s;
Line 103 
Line 101 
  * since last reset.   * since last reset.
  */   */
 void  void
 sreset()  sreset(void)
 {  {
         struct strings *sp;          struct strings *sp;
         int index;          int index;
Line 125 
Line 123 
  * Meant to be called in main, after initialization.   * Meant to be called in main, after initialization.
  */   */
 void  void
 spreserve()  spreserve(void)
 {  {
         struct strings *sp;          struct strings *sp;
   

Legend:
Removed from v.1.6  
changed lines
  Added in v.1.7