blob: ab5af3fa8ca860c1398085417b8dd07184cad5ec [file] [log] [blame]
Andrew Geissler87f5cff2022-09-30 13:13:31 -05001From 01d0904a987ec3d8850ae3b54252c9d3bbe75962 Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Tue, 30 Aug 2022 15:43:42 -0700
4Subject: [PATCH] testtyp.c: Use proper prototype for main function
5
6Newer compilers like clang-15+ will complain about the prototype
7vigorously, and the test will end up failing for this reason instead of
8real check it should be failing/passing for.
9
10Fixes
11testint.c:11:1: error: type specifier missing, defaults to 'int'; ISO C99 and later do not support implicit int [-Wimplicit-int]
12main() {
13^
14int
151 error generated.
16
17Upstream-Status: Pending
18Signed-off-by: Khem Raj <raj.khem@gmail.com>
19---
20 testtyp.c | 5 +++--
21 1 file changed, 3 insertions(+), 2 deletions(-)
22
23diff --git a/testtyp.c b/testtyp.c
24index 949c3d4..4042f73 100644
25--- a/testtyp.c
26+++ b/testtyp.c
27@@ -7,7 +7,8 @@
28 #define _XOPEN_SOURCE_EXTENDED 1 /* We expect wide character functions */
29
30 #include "c-config.h"
31-
32-main() {
33+int
34+main(int argc, char *argv[]) {
35 typedef SYM c_sym_t;
36+ return 0;
37 }
38--
392.37.3
40