diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-09-15 22:21:41 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-09-15 22:21:41 +0000 |
commit | 7d61e7369c8ae985c82e72517c0bc34a8b08dda4 (patch) | |
tree | cc2c66cd3cc88948c857365033c0792b16c65bfe /usr.bin/mail/aux.c | |
parent | a82cc21c1d88b981d12bc183e359e823292be4b8 (diff) |
avoid aliasing against libc symbols
Diffstat (limited to 'usr.bin/mail/aux.c')
-rw-r--r-- | usr.bin/mail/aux.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/mail/aux.c b/usr.bin/mail/aux.c index 16f2781c19d..6152515e2e1 100644 --- a/usr.bin/mail/aux.c +++ b/usr.bin/mail/aux.c @@ -1,4 +1,4 @@ -/* $OpenBSD: aux.c,v 1.21 2003/06/03 02:56:11 millert Exp $ */ +/* $OpenBSD: aux.c,v 1.22 2004/09/15 22:21:40 deraadt Exp $ */ /* $NetBSD: aux.c,v 1.5 1997/05/13 06:15:52 mikel Exp $ */ /* @@ -34,7 +34,7 @@ #if 0 static const char sccsid[] = "@(#)aux.c 8.1 (Berkeley) 6/6/93"; #else -static const char rcsid[] = "$OpenBSD: aux.c,v 1.21 2003/06/03 02:56:11 millert Exp $"; +static const char rcsid[] = "$OpenBSD: aux.c,v 1.22 2004/09/15 22:21:40 deraadt Exp $"; #endif #endif /* not lint */ @@ -603,7 +603,7 @@ charcount(char *str, int c) * Convert c to upper case */ int -raise(int c) +chraise(int c) { if (islower(c)) |