diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2002-05-11 23:02:34 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2002-05-11 23:02:34 +0000 |
commit | 2ddcfdb41a7c87e9c0e9d3e2b4b1e8c474e2d44d (patch) | |
tree | dbb76aabc33f6e77682bf2e968ae55f6fc0f8502 /usr.bin/at/panic.h | |
parent | 1b792dd4850aa9188aa8db53b3a941c8c48c0246 (diff) |
Add POSIX -r and -t flags from FreeBSD. The old -d option is now
deprecated and no longer documented.
Also, use __progname instead of examining argv and clean up a few minor
warnings.
Diffstat (limited to 'usr.bin/at/panic.h')
-rw-r--r-- | usr.bin/at/panic.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/usr.bin/at/panic.h b/usr.bin/at/panic.h index f6415dc45a4..3126fd9c06f 100644 --- a/usr.bin/at/panic.h +++ b/usr.bin/at/panic.h @@ -1,4 +1,4 @@ -/* $OpenBSD: panic.h,v 1.4 2002/02/16 21:27:44 millert Exp $ */ +/* $OpenBSD: panic.h,v 1.5 2002/05/11 23:02:33 millert Exp $ */ /* $NetBSD: panic.h,v 1.2 1995/03/25 18:13:35 glass Exp $ */ /* @@ -26,7 +26,7 @@ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -void panic(char *); -void perr(char *); -void perr2(char *, char *); -void usage(void); +__dead void panic(char *); +__dead void perr(char *); +__dead void perr2(char *, char *); +__dead void usage(void); |