diff options
Diffstat (limited to 'usr.bin/mail/strings.c')
-rw-r--r-- | usr.bin/mail/strings.c | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/usr.bin/mail/strings.c b/usr.bin/mail/strings.c index d3a816f..ec9334e 100644 --- a/usr.bin/mail/strings.c +++ b/usr.bin/mail/strings.c @@ -10,10 +10,6 @@ * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. - * 3. All advertising materials mentioning features or use of this software - * must display the following acknowledgement: - * This product includes software developed by the University of - * California, Berkeley and its contributors. * 4. Neither the name of the University nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. @@ -59,8 +55,7 @@ __FBSDID("$FreeBSD$"); */ char * -salloc(size) - int size; +salloc(int size) { char *t; int s, index; @@ -98,7 +93,7 @@ salloc(size) * since last reset. */ void -sreset() +sreset(void) { struct strings *sp; int index; @@ -120,7 +115,7 @@ sreset() * Meant to be called in main, after initialization. */ void -spreserve() +spreserve(void) { struct strings *sp; |