summaryrefslogtreecommitdiff
path: root/libiberty/stpncpy.c
diff options
context:
space:
mode:
authorDJ Delorie <dj@delorie.com>2005-03-28 05:07:08 +0000
committerDJ Delorie <dj@delorie.com>2005-03-28 05:07:08 +0000
commiteb0e4f9cefc1d530da0654474f7a909f07ee77d3 (patch)
tree5f0563b072f5e292e6c10e44250653ca9048f83c /libiberty/stpncpy.c
parent330f7c1a6218d3b4a10b5b571eee65f3d53b64ac (diff)
downloadgdb-eb0e4f9cefc1d530da0654474f7a909f07ee77d3.tar.gz
merge from gcc
Diffstat (limited to 'libiberty/stpncpy.c')
-rw-r--r--libiberty/stpncpy.c13
1 files changed, 3 insertions, 10 deletions
diff --git a/libiberty/stpncpy.c b/libiberty/stpncpy.c
index cb67b4dbab1..b885d85bde2 100644
--- a/libiberty/stpncpy.c
+++ b/libiberty/stpncpy.c
@@ -32,20 +32,13 @@ strlen(@var{src}).
*/
#include <ansidecl.h>
-#ifdef ANSI_PROTOTYPES
#include <stddef.h>
-#else
-#define size_t unsigned long
-#endif
-extern size_t strlen PARAMS ((const char *));
-extern char *strncpy PARAMS ((char *, const char *, size_t));
+extern size_t strlen (const char *);
+extern char *strncpy (char *, const char *, size_t);
char *
-stpncpy (dst, src, len)
- char *dst;
- const char *src;
- size_t len;
+stpncpy (char *dst, const char *src, size_t len)
{
size_t n = strlen (src);
if (n > len)