2004-08-04 Michael Chastain <mec.gnu@mindspring.com>
authorMichael Chastain <mec@google.com>
Thu, 5 Aug 2004 00:59:23 +0000 (00:59 +0000)
committerMichael Chastain <mec@google.com>
Thu, 5 Aug 2004 00:59:23 +0000 (00:59 +0000)
* gdb.base/complex.c: Include <stdlib.h>.

gdb/testsuite/ChangeLog
gdb/testsuite/gdb.base/complex.c

index f09be36430ccee57b6a2b8d3b1b74df46a47088f..bfc89613158c75bb7bed0feb6cad9c2ae363c018 100644 (file)
@@ -1,3 +1,7 @@
+2004-08-04  Michael Chastain  <mec.gnu@mindspring.com>
+
+       * gdb.base/complex.c: Include <stdlib.h>.
+
 2004-08-04  Michael Chastain  <mec.gnu@mindspring.com>
 
        * gdb.base/complex.c: Add copyright notice.
index dc69f6d8cf58b594fa66227d8a1e8e48d5e8d6e5..dabbdd60595c5ea859227a783b345b49713152d9 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright 2002, 2003
+/* Copyright 2002, 2003, 2004
    Free Software Foundation, Inc.
 
    This file is part of GDB.
@@ -21,6 +21,8 @@
 /* Test taken from GCC.  Verify that we can print a structure containing
    a complex number.  */
 
+#include <stdlib.h>
+
 typedef __complex__ float cf;
 struct x { char c; cf f; } __attribute__ ((__packed__));
 struct unpacked_x { char c; cf f; };