Fix clang build failure 75/325275/1 tizen_base
authorVadim Solomin <v.solomin@partner.samsung.com>
Thu, 5 Jun 2025 20:16:42 +0000 (23:16 +0300)
committerVadim Solomin <v.solomin@partner.samsung.com>
Thu, 5 Jun 2025 20:16:42 +0000 (23:16 +0300)
commit894ae17d995710f311734f404ec7aeb5eef11ffa
tree878f1cd576f8c33e9dc7fbeb77aee4f3ef6c9780
parent93bbcf7c2882931371b18f74abb8371c14ba5cbc
Fix clang build failure

Configure misdetects clang as a K&R (i.e. pre-ANSI) C compiler due to
insufficient quoting in the autoconf test. Brackets after 'argv' get
removed by m4 resulting in the main prototype being int main(int *,
char *). That causes just a warning with gcc, but an error with clang.

Change-Id: Ie0c34d55382c99762b6be0636d277fd957dac851
acinclude.m4