diff options
author | Alp Toker <alp@nuanti.com> | 2014-05-15 02:22:34 +0000 |
---|---|---|
committer | Alp Toker <alp@nuanti.com> | 2014-05-15 02:22:34 +0000 |
commit | 1ee7fc7a1a5125d12b15673fcee500df4bf6241b (patch) | |
tree | 810b11a0f6969a552c0a6be53e0a03129a2ed6a6 /compiler-rt/SDKs/darwin/usr/include/string.h | |
parent | e077269764568465a70f72a7ef21249e25f3afe0 (diff) | |
download | bcm5719-llvm-1ee7fc7a1a5125d12b15673fcee500df4bf6241b.tar.gz bcm5719-llvm-1ee7fc7a1a5125d12b15673fcee500df4bf6241b.zip |
Fix typos
llvm-svn: 208841
Diffstat (limited to 'compiler-rt/SDKs/darwin/usr/include/string.h')
-rw-r--r-- | compiler-rt/SDKs/darwin/usr/include/string.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/compiler-rt/SDKs/darwin/usr/include/string.h b/compiler-rt/SDKs/darwin/usr/include/string.h index c6ab5d8e587..1a00574cf2b 100644 --- a/compiler-rt/SDKs/darwin/usr/include/string.h +++ b/compiler-rt/SDKs/darwin/usr/include/string.h @@ -35,16 +35,16 @@ char *strncpy(char *, const char *, size_t); # elif defined(__x86_64__) || defined(__arm) # define __STRERROR_NAME "_strerror" # else -# error "unrecognized architecture for targetting OS X" +# error "unrecognized architecture for targeting OS X" # endif #elif defined(__ENVIRONMENT_IPHONE_OS_VERSION_MIN_REQUIRED__) # if defined(__i386) || defined (__x86_64) || defined(__arm) # define __STRERROR_NAME "_strerror" # else -# error "unrecognized architecture for targetting iOS" +# error "unrecognized architecture for targeting iOS" # endif #else -# error "unrecognized architecture for targetting Darwin" +# error "unrecognized architecture for targeting Darwin" #endif char *strerror(int) __asm(__STRERROR_NAME); |