summaryrefslogtreecommitdiff
path: root/patches/gdb/6.8a/150-handle-stpcpy-define.patch
blob: 88d703ff4069f5866040ef81c61cc1ddf4b02fff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
diff -ru gdb-6.8.orig/bfd/sysdep.h gdb-6.8/bfd/sysdep.h
--- gdb-6.8.orig/bfd/sysdep.h	2007-07-03 16:26:42.000000000 +0200
+++ gdb-6.8/bfd/sysdep.h	2011-08-21 13:33:47.000000000 +0200
@@ -131,7 +131,7 @@
 extern PTR realloc ();
 #endif
 
-#if !HAVE_DECL_STPCPY
+#if !HAVE_DECL_STPCPY && !defined(stpcpy)
 extern char *stpcpy (char *__dest, const char *__src);
 #endif