From: Jeff Law Date: Thu, 14 Dec 2023 00:24:39 +0000 (-0700) Subject: [committed] Minor testsuite fallout from c99 changes X-Git-Tag: basepoints/gcc-15~3612 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=acfd33620af3519b84baecedb0eb6618c2f599a6;p=thirdparty%2Fgcc.git [committed] Minor testsuite fallout from c99 changes The alpha port failed its weekly test due to a lack of a prototype for the syscall() routine. Fixed thusly and pushed to the trunk. gcc/testsuite * gcc.c-torture/execute/20001229-1.c: Prototype syscall(). --- diff --git a/gcc/testsuite/gcc.c-torture/execute/20001229-1.c b/gcc/testsuite/gcc.c-torture/execute/20001229-1.c index 3bf333dd5a8e..a235fdad1385 100644 --- a/gcc/testsuite/gcc.c-torture/execute/20001229-1.c +++ b/gcc/testsuite/gcc.c-torture/execute/20001229-1.c @@ -14,6 +14,8 @@ void exit (int); #include #include +int syscall (int, ...); + static inline int setsysinfo(unsigned long op, void *buffer, unsigned long size, int *start, void *arg, unsigned long flag)