diff options
author | Guido van Rossum <guido@python.org> | 2000-06-29 00:06:39 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2000-06-29 00:06:39 (GMT) |
commit | 4f4b799b3358516370653900789132231324003c (patch) | |
tree | f717c6604a287db9c983a716fa6deb66320d79d0 /Modules | |
parent | e8d2d6b34c8c1102777604e0b0dae80d0321a799 (diff) | |
download | cpython-4f4b799b3358516370653900789132231324003c.zip cpython-4f4b799b3358516370653900789132231324003c.tar.gz cpython-4f4b799b3358516370653900789132231324003c.tar.bz2 |
Jack Jansen: Use include "" instead of <>; and staticforward declarations
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/ucnhash.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Modules/ucnhash.c b/Modules/ucnhash.c index 6e598cb..0b2aa17 100644 --- a/Modules/ucnhash.c +++ b/Modules/ucnhash.c @@ -1,4 +1,4 @@ -#include <ucnhash.h> +#include "ucnhash.h" /* * The hash is produced using the algorithm described in @@ -19,8 +19,8 @@ #define k_cKeys 10538 -static const unsigned short G[k_cHashElements]; -static const _Py_UnicodeCharacterName aucn[k_cKeys]; +staticforward const unsigned short G[k_cHashElements]; +staticforward const _Py_UnicodeCharacterName aucn[k_cKeys]; static long f1(const char *key, unsigned int cch) { |