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/extern.h | |
parent | a82cc21c1d88b981d12bc183e359e823292be4b8 (diff) |
avoid aliasing against libc symbols
Diffstat (limited to 'usr.bin/mail/extern.h')
-rw-r--r-- | usr.bin/mail/extern.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/mail/extern.h b/usr.bin/mail/extern.h index b766e8e7e8e..672a059b0fc 100644 --- a/usr.bin/mail/extern.h +++ b/usr.bin/mail/extern.h @@ -1,4 +1,4 @@ -/* $OpenBSD: extern.h,v 1.22 2004/05/10 12:10:50 millert Exp $ */ +/* $OpenBSD: extern.h,v 1.23 2004/09/15 22:21:40 deraadt Exp $ */ /* $NetBSD: extern.h,v 1.7 1997/07/09 05:22:00 mikel Exp $ */ /*- @@ -30,7 +30,7 @@ * SUCH DAMAGE. * * @(#)extern.h 8.2 (Berkeley) 4/20/95 - * $OpenBSD: extern.h,v 1.22 2004/05/10 12:10:50 millert Exp $ + * $OpenBSD: extern.h,v 1.23 2004/09/15 22:21:40 deraadt Exp $ */ struct name; @@ -101,7 +101,7 @@ void commands(void); int copycmd(void *); int core(void *); int count(struct name *); -int delete(void *); +int deletecmd(void *); int delm(int *); int deltype(void *); void demail(void); @@ -200,7 +200,7 @@ int putline(FILE *, char *, int); int pversion(void *); int quit(void); int quitcmd(void *); -int raise(int); +int chraise(int); int readline(FILE *, char *, int, int *); void register_file(FILE *, int, pid_t); void regret(int); |