blob: 08e899b9a62fe9bd30e4178e664a30d41b08ee66 [file] [log] [blame]
Andrew Geissler87f5cff2022-09-30 13:13:31 -05001From 6b5f695cb206cd8b3cbcbcd7713e52772e89306b Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Fri, 2 Sep 2022 20:47:32 -0700
4Subject: [PATCH] main.c: Define prototype for setup_appdata
5
6Upstream-Status: Pending
7Signed-off-by: Khem Raj <raj.khem@gmail.com>
8---
9 src/main.c | 2 ++
10 1 file changed, 2 insertions(+)
11
12diff --git a/src/main.c b/src/main.c
13index c226799..b4ce6d1 100644
14--- a/src/main.c
15+++ b/src/main.c
16@@ -18,6 +18,8 @@
17 #include "callbacks.h"
18 #include "appdata.h"
19
20+void setup_appdata(AppData * appdata_in);
21+
22 int
23 main (int argc, char **argv)
24 {
25--
262.37.3
27