blob: 13819f5cf8521d1b96fe10482af100cb75fdf698 [file] [log] [blame]
Andrew Geisslerc5535c92023-01-27 16:10:19 -06001From 7dfa672dac958bdbc7703ab0920e167eaa126754 Mon Sep 17 00:00:00 2001
2From: Sergei Trofimovich <slyich@gmail.com>
3Date: Mon, 16 Jan 2023 19:49:53 +0000
4Subject: [PATCH] test/threads/hb-subset-threads.cc: add missing <cstdio> include
5
6This week's `gcc-13` snapshot cleaned further up it's standard headers
7and exposed missing declaration as a build failure:
8
9 ../test/threads/hb-subset-threads.cc: In function 'void test_operation(operation_t, const char*, const test_input_t&)':
10 ../test/threads/hb-subset-threads.cc:127:3: error: 'printf' was not declared in this scope
11
12 ../test/threads/hb-subset-threads.cc: In function 'int main(int, char**)':
13 ../test/threads/hb-subset-threads.cc:157:19: error: 'atoi' was not declared in this scope
14
15Upstream-Status: Backport [https://github.com/harfbuzz/harfbuzz/commit/7dfa672dac958bdbc7703ab0920e167eaa126754]
16Signed-off-by: Khem Raj <raj.khem@gmail.com>
17---
18 test/threads/hb-subset-threads.cc | 2 ++
19 1 file changed, 2 insertions(+)
20
21diff --git a/test/threads/hb-subset-threads.cc b/test/threads/hb-subset-threads.cc
22index 9d86d8d51..f0e4b7e2a 100644
23--- a/test/threads/hb-subset-threads.cc
24+++ b/test/threads/hb-subset-threads.cc
25@@ -1,4 +1,6 @@
26 #include <cassert>
27+#include <cstdio>
28+#include <cstdlib>
29 #include <cstring>
30 #include <thread>
31 #include <condition_variable>
32--
332.39.1
34