diff options
author | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-04-16 04:42:38 +0000 |
---|---|---|
committer | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-04-16 04:42:38 +0000 |
commit | 5b5acad2c8c1ad9e271bd2b3a01feb2667de43ee (patch) | |
tree | 90a769c24210b051af50e09b6d6dad778a5c8f0e /libiberty/stpncpy.c | |
parent | 79d940a339e4b548ea0d02609b1f51b5147b2b64 (diff) | |
download | gcc-5b5acad2c8c1ad9e271bd2b3a01feb2667de43ee.tar.gz |
Fix typo in last checkin.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@65676 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libiberty/stpncpy.c')
-rw-r--r-- | libiberty/stpncpy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libiberty/stpncpy.c b/libiberty/stpncpy.c index 0984340ba2c..cb67b4dbab1 100644 --- a/libiberty/stpncpy.c +++ b/libiberty/stpncpy.c @@ -39,7 +39,7 @@ strlen(@var{src}). #endif extern size_t strlen PARAMS ((const char *)); -extern PTR strncpy PARAMS ((char *, const char *, size_t)); +extern char *strncpy PARAMS ((char *, const char *, size_t)); char * stpncpy (dst, src, len) |