diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2000-04-26 15:47:32 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2000-04-26 15:47:32 +0000 |
commit | c7982e51474fec2f2a9529530607f9fc17b875e3 (patch) | |
tree | 256534cc05cfb20de8f9e1df5e3a4af90160869e /usr.bin/mail/extern.h | |
parent | df876b731d4f232327086990991af10420a48f7a (diff) |
Change the name of mail's send() function to sendmessages() to
avoid shadowing the libc send(2); gadams@avernus.com
Diffstat (limited to 'usr.bin/mail/extern.h')
-rw-r--r-- | usr.bin/mail/extern.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/mail/extern.h b/usr.bin/mail/extern.h index 36b04e4acc3..84b01d5b07c 100644 --- a/usr.bin/mail/extern.h +++ b/usr.bin/mail/extern.h @@ -1,4 +1,4 @@ -/* $OpenBSD: extern.h,v 1.13 2000/04/25 16:42:22 millert Exp $ */ +/* $OpenBSD: extern.h,v 1.14 2000/04/26 15:47:31 millert Exp $ */ /* $NetBSD: extern.h,v 1.7 1997/07/09 05:22:00 mikel Exp $ */ /*- @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * @(#)extern.h 8.2 (Berkeley) 4/20/95 - * $OpenBSD: extern.h,v 1.13 2000/04/25 16:42:22 millert Exp $ + * $OpenBSD: extern.h,v 1.14 2000/04/26 15:47:31 millert Exp $ */ struct name; @@ -227,7 +227,7 @@ void scaninit __P((void)); int schdir __P((void *)); int screensize __P((void)); int scroll __P((void *)); -int send __P((struct message *, FILE *, struct ignoretab *, char *)); +int sendmessage __P((struct message *, FILE *, struct ignoretab *, char *)); int sendmail __P((void *)); int set __P((void *)); int setfile __P((char *)); |