summaryrefslogtreecommitdiff
path: root/string
diff options
context:
space:
mode:
authorJoseph Myers <joseph@codesourcery.com>2013-02-13 23:30:40 +0000
committerJoseph Myers <joseph@codesourcery.com>2013-02-13 23:30:40 +0000
commit70d9946a44ba381f81eb08c71cc150315cc112ad (patch)
treeb354421eb394cee78cb16fd35812fb864c481ab8 /string
parentffb1ec7b7ff1c65523b6926fc3afbacdb94db356 (diff)
Remove __ptrvalue, __bounded and __unbounded.
Diffstat (limited to 'string')
-rw-r--r--string/strcpy.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/string/strcpy.c b/string/strcpy.c
index 64e030d8d2..b71f7536bc 100644
--- a/string/strcpy.c
+++ b/string/strcpy.c
@@ -28,7 +28,7 @@ strcpy (dest, src)
const char *src;
{
char c;
- char *__unbounded s = (char *__unbounded) src;
+ char *s = (char *) src;
const ptrdiff_t off = dest - s - 1;
do