diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2015-10-23 02:01:16 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2015-10-23 02:01:16 +0000 |
commit | b3753630a6c57f0c1741e37cc7f43d28f50a7869 (patch) | |
tree | 10a389d547cba7fa94dfacd75bfde4e2d42b0ca9 /games/morse | |
parent | 1dd65a7f45bc31e97b63abba95a810a2d463f0d6 (diff) |
include err.h for err() calls added with recent pledge commits.
Diffstat (limited to 'games/morse')
-rw-r--r-- | games/morse/morse.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/games/morse/morse.c b/games/morse/morse.c index b99412cb40c..ba5eba7725e 100644 --- a/games/morse/morse.c +++ b/games/morse/morse.c @@ -1,4 +1,4 @@ -/* $OpenBSD: morse.c,v 1.16 2015/10/14 08:12:12 doug Exp $ */ +/* $OpenBSD: morse.c,v 1.17 2015/10/23 02:01:15 jsg Exp $ */ /* * Copyright (c) 1988, 1993 @@ -34,6 +34,7 @@ #include <stdlib.h> #include <string.h> #include <unistd.h> +#include <err.h> static char *digit[] = { |