=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/mail/strings.c,v retrieving revision 1.6 retrieving revision 1.7 diff -c -r1.6 -r1.7 *** src/usr.bin/mail/strings.c 1997/11/14 00:23:58 1.6 --- src/usr.bin/mail/strings.c 2001/11/21 15:26:39 1.7 *************** *** 1,4 **** ! /* $OpenBSD: strings.c,v 1.6 1997/11/14 00:23:58 millert Exp $ */ /* $NetBSD: strings.c,v 1.5 1996/06/08 19:48:40 christos Exp $ */ /* --- 1,4 ---- ! /* $OpenBSD: strings.c,v 1.7 2001/11/21 15:26:39 millert Exp $ */ /* $NetBSD: strings.c,v 1.5 1996/06/08 19:48:40 christos Exp $ */ /* *************** *** 36,44 **** #ifndef lint #if 0 ! static char sccsid[] = "@(#)strings.c 8.1 (Berkeley) 6/6/93"; #else ! static char rcsid[] = "$OpenBSD: strings.c,v 1.6 1997/11/14 00:23:58 millert Exp $"; #endif #endif /* not lint */ --- 36,44 ---- #ifndef lint #if 0 ! static const char sccsid[] = "@(#)strings.c 8.1 (Berkeley) 6/6/93"; #else ! static const char rcsid[] = "$OpenBSD: strings.c,v 1.7 2001/11/21 15:26:39 millert Exp $"; #endif #endif /* not lint */ *************** *** 60,69 **** * The string spaces are of exponentially increasing size, to satisfy * the occasional user with enormous string size requests. */ - char * ! salloc(size) ! int size; { char *t; int s; --- 60,67 ---- * The string spaces are of exponentially increasing size, to satisfy * the occasional user with enormous string size requests. */ char * ! salloc(int size) { char *t; int s; *************** *** 103,109 **** * since last reset. */ void ! sreset() { struct strings *sp; int index; --- 101,107 ---- * since last reset. */ void ! sreset(void) { struct strings *sp; int index; *************** *** 125,131 **** * Meant to be called in main, after initialization. */ void ! spreserve() { struct strings *sp; --- 123,129 ---- * Meant to be called in main, after initialization. */ void ! spreserve(void) { struct strings *sp;