diff options
| author | sin | 2015-01-30 16:25:13 +0000 |
|---|---|---|
| committer | sin | 2015-01-30 16:25:13 +0000 |
| commit | e4fe187649888bfa54dd92e4c6b85683579058e8 (patch) | |
| tree | 15680c478430d3426315227c52bbc425e60725b9 /include/strings.h | |
| parent | e6837a7874a40d5fe78dd3edd5f6dab68d87a962 (diff) | |
Remove __restrict
Diffstat (limited to '')
| -rw-r--r-- | include/strings.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/strings.h b/include/strings.h index 4086fe4..5a3471d 100644 --- a/include/strings.h +++ b/include/strings.h | |||
| @@ -14,7 +14,7 @@ | |||
| 14 | __errordecl(__bcopy_error, "bcopy: buffer overflow detected"); | 14 | __errordecl(__bcopy_error, "bcopy: buffer overflow detected"); |
| 15 | static inline __attribute__ ((always_inline)) | 15 | static inline __attribute__ ((always_inline)) |
| 16 | void | 16 | void |
| 17 | __fortify_bcopy(const void *__restrict src, void *__restrict dest, size_t n) | 17 | __fortify_bcopy(const void *src, void *dest, size_t n) |
| 18 | { | 18 | { |
| 19 | size_t bos = __builtin_object_size(dest, 0); | 19 | size_t bos = __builtin_object_size(dest, 0); |
| 20 | 20 | ||
