diff options
author | Urabe, Shyouhei <[email protected]> | 2019-04-26 17:00:58 +0900 |
---|---|---|
committer | Urabe, Shyouhei <[email protected]> | 2019-04-29 21:52:44 +0900 |
commit | 7c0f513e97828dd8274695a49bde92c326b208cb (patch) | |
tree | b39544a272197ead9c0906826840e433934dd77f /string.c | |
parent | 6a3165e19dfa21babfb2ef1f1c20c9930410b0ec (diff) |
fix typo
Diffstat (limited to 'string.c')
-rw-r--r-- | string.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -450,7 +450,7 @@ search_nonascii(const char *p, const char *e) { const uintptr_t *s, *t; -#if defined(__STDC_VERSION) && (__STDC_VERSION__ >= 199901L) +#if defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L) # if SIZEOF_UINTPTR_T == 8 # define NONASCII_MASK UINT64_C(0x8080808080808080) # elif SIZEOF_UINTPTR_T == 4 |