diff options
Diffstat (limited to 'usr.bin/netstat/main.c')
| -rw-r--r-- | usr.bin/netstat/main.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/usr.bin/netstat/main.c b/usr.bin/netstat/main.c index 6af1ac703798..d674227efc52 100644 --- a/usr.bin/netstat/main.c +++ b/usr.bin/netstat/main.c @@ -703,6 +703,12 @@ plurales(int n) return (n != 1 ? "es" : ""); } +const char * +pluralies(int n) +{ + return (n != 1 ? "ies" : "y"); +} + /* * Find the protox for the given "well-known" name. */ |
