File: 06_curses.c-include-term.h

package info (click to toggle)
netris 0.52-10
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster, stretch
  • size: 512 kB
  • ctags: 1,100
  • sloc: ansic: 7,657; makefile: 11
file content (15 lines) | stat: -rw-r--r-- 427 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Author: David Mosberger <David.Mosberger@acm.org>	vim:ft=diff:
Description: #include <term.h> to avoid implicit pointer conversion, BTS #325926

Index: b/curses.c
===================================================================
--- a/curses.c
+++ b/curses.c
@@ -22,6 +22,7 @@
 #include "netris.h"
 #include <sys/types.h>
 #include <unistd.h>
+#include <term.h>
 #include <curses.h>
 #include <string.h>
 #include <stdlib.h>