File: 0005-Fix-missing-ctype.h-include.patch

package info (click to toggle)
bibcursed 2.0.1-0.2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 440 kB
  • sloc: ansic: 7,605; makefile: 9
file content (21 lines) | stat: -rw-r--r-- 458 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
From: Boyuan Yang <byang@debian.org>
Date: Thu, 11 Jul 2024 16:15:45 -0400
Subject: Fix missing ctype.h include

Bug-Debian: https://bugs.debian.org/1066309
---
 bibcursed.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/bibcursed.c b/bibcursed.c
index fae7443..ae8173f 100644
--- a/bibcursed.c
+++ b/bibcursed.c
@@ -24,6 +24,7 @@
 #include <stdlib.h>
 #include <unistd.h>
 #include <curses.h>
+#include <ctype.h>
 #include <string.h>
 
 int rec_count;