blob: 5778a00346947cbfb32fc20d1427cdd6b4d3ca3e [file] [log] [blame]
Andrew Geissler87f5cff2022-09-30 13:13:31 -05001From fbd00d93cc07fa5da20414b355fffe628dcd37b3 Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Wed, 7 Sep 2022 13:57:19 -0700
4Subject: [PATCH 2/2] tmail: Include ctype.h for isdigit
5
6Upstream-Status: Pending
7Signed-off-by: Khem Raj <raj.khem@gmail.com>
8---
9 src/tmail/tmail.c | 1 +
10 1 file changed, 1 insertion(+)
11
12diff --git a/src/tmail/tmail.c b/src/tmail/tmail.c
13index ed5fc58..a9e3645 100644
14--- a/src/tmail/tmail.c
15+++ b/src/tmail/tmail.c
16@@ -26,6 +26,7 @@
17 * Last Edited: 30 October 2008
18 */
19
20+#include <ctype.h> /* for isdigit */
21 #include <stdio.h>
22 #include <pwd.h>
23 #include <errno.h>
24--
252.37.3
26