s_char purge directed by compiler warnings.

This commit is contained in:
Markus Armbruster 2006-04-29 06:41:45 +00:00
parent 87b5d5d6e3
commit a988b907fc
130 changed files with 527 additions and 527 deletions

View file

@ -35,19 +35,19 @@
#include "prototypes.h"
s_char *
char *
splur(int n)
{
return n == 1 ? "" : "s";
}
s_char *
char *
esplur(int n)
{
return n == 1 ? "" : "es";
}
s_char *
char *
iesplur(int n)
{
return n == 1 ? "y" : "ies";