blob: 1b8593d6ce0c811e8604e32a2355fe847ce7e4c0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
$NetBSD: patch-src_libtracker-common_tracker-term-utils.c,v 1.1 2022/05/10 09:37:38 jperkin Exp $
Include termios for TIOCGWINSZ.
--- src/libtracker-common/tracker-term-utils.c.orig 2020-10-02 09:59:29.818610200 +0000
+++ src/libtracker-common/tracker-term-utils.c
@@ -27,6 +27,7 @@
#include <unistd.h>
#include <fcntl.h>
#include <stdio.h>
+#include <termios.h>
static guint n_columns = 0;
static guint n_rows = 0;
|