]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
[gdb/testsuite] Add missing include in gdb.base/ctf-ptype.c
authorTom de Vries <tdevries@suse.de>
Tue, 2 Apr 2024 14:22:46 +0000 (16:22 +0200)
committerTom de Vries <tdevries@suse.de>
Tue, 2 Apr 2024 14:22:46 +0000 (16:22 +0200)
On fedora rawhide, when running test-case gdb.base/ctf-ptype.exp, I get:
...
gdb compile failed, ctf-ptype.c: In function 'main':
ctf-ptype.c:242:29: error: implicit declaration of function 'malloc' \
  [-Wimplicit-function-declaration]
  242 |   v_char_pointer = (char *) malloc (1);
      |                             ^~~~~~
ctf-ptype.c:1:1: note: include '<stdlib.h>' or provide a declaration of 'malloc'
  +++ |+#include <stdlib.h>
    1 | /* This test program is part of GDB, the GNU debugger.
...

Fix this by adding the missing include.

Tested on aarch64-linux.

gdb/testsuite/gdb.base/ctf-ptype.c

index 4d2df33c53c5231f0721922a21923a95d053a3f4..ca3478933492b0b18f4e8515a9a97d030a31fa91 100644 (file)
@@ -24,6 +24,8 @@
  *     First the basic C types.
  */
 
+#include <stdlib.h>
+
 #if !defined (__STDC__) && !defined (_AIX)
 #define signed  /**/
 #endif
@@ -234,9 +236,6 @@ func_type v_func_type;
 
 int main ()
 {
-  /* Ensure that malloc is a pointer type; avoid use of "void" and any include files. */
-/*  extern char *malloc();*/
-
   /* Some of the tests in ptype.exp require invoking malloc, so make
      sure it is linked in to this program.  */
   v_char_pointer = (char *) malloc (1);