diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1997-03-29 03:01:48 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1997-03-29 03:01:48 +0000 |
commit | 683448b071125f5ab13fb1dbfa4a102f29ee0eb5 (patch) | |
tree | bb29a91791c01430e7de9c04035be04ea9704726 /usr.bin/mail/extern.h | |
parent | 3faea98967766403ac05745edfa8610a29a3e1dd (diff) |
Use ``mail.local -H'' to do dot locking so we can have mode 755 mail
spool, change an occurrence of tempnam() to mkstemp(), change some
longs and shorts to ints. Mail is now usable again.
Diffstat (limited to 'usr.bin/mail/extern.h')
-rw-r--r-- | usr.bin/mail/extern.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/mail/extern.h b/usr.bin/mail/extern.h index 28ed945ba35..e40ca2c6363 100644 --- a/usr.bin/mail/extern.h +++ b/usr.bin/mail/extern.h @@ -1,4 +1,4 @@ -/* $OpenBSD: extern.h,v 1.3 1996/06/11 12:53:39 deraadt Exp $ */ +/* $OpenBSD: extern.h,v 1.4 1997/03/29 03:01:45 millert Exp $ */ /* $NetBSD: extern.h,v 1.4 1996/06/08 19:48:21 christos Exp $ */ /*- @@ -236,6 +236,8 @@ int shell __P((void *)); void sigchild __P((int)); void sort __P((char **)); int source __P((void *)); +int spool_lock __P((void)); +int spool_unlock __P((void)); void spreserve __P((void)); void sreset __P((void)); int start_command __P((char *, sigset_t *, int, int, char *, char *, char *)); |