diff options
author | Brooks Davis <brooks@FreeBSD.org> | 2024-09-30 16:56:09 +0100 |
---|---|---|
committer | Brooks Davis <brooks@FreeBSD.org> | 2024-09-30 23:13:43 +0100 |
commit | b8e225422defaecb12e4860000f97e08f9f5afe8 (patch) | |
tree | 94c7122c7571fb5ba036a8d93eab6a7a6cb9b89e /misc/viz/files/patch-lists.c | |
parent | math/xspread: include errno.h for errno (diff) |
misc/viz: include errno.h for errno
errno must be accessed by a macro from errno.h. This program was
partially converted in it's initial commit, but the removal of errno
declerations was incomplete.
Diffstat (limited to 'misc/viz/files/patch-lists.c')
-rw-r--r-- | misc/viz/files/patch-lists.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/misc/viz/files/patch-lists.c b/misc/viz/files/patch-lists.c new file mode 100644 index 000000000000..db88c0b0baf6 --- /dev/null +++ b/misc/viz/files/patch-lists.c @@ -0,0 +1,13 @@ +--- lists.c.orig ++++ lists.c +@@ -6,10 +6,6 @@ + + #include "viz.h" + +-extern errno; +- +-extern char *malloc(); +- + void + printlist(level, list) + int level; |