]> granicus.if.org Git - python/commitdiff
Jack Jansen: Use include "" instead of <>; and staticforward declarations
authorGuido van Rossum <guido@python.org>
Thu, 29 Jun 2000 00:06:39 +0000 (00:06 +0000)
committerGuido van Rossum <guido@python.org>
Thu, 29 Jun 2000 00:06:39 +0000 (00:06 +0000)
Include/ucnhash.h
Modules/ucnhash.c
Objects/unicodeobject.c

index f27a16fbc985320b0f5f22effa531a9b84544b5b..713fd3d81ee563e74395b8300b8c20ef828308cd 100644 (file)
@@ -1,5 +1,5 @@
 
-#include <Python.h>
+#include "Python.h"
 #include <stdlib.h>
 
 /* --- C API ----------------------------------------------------*/
index 6e598cb76e9188e8368fb247d7f4601530a18d79..0b2aa17f9e32ade46bd554e4131d003198908029 100644 (file)
@@ -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)
 {
index 57bedb8abc18241d89ac9848fc5e93c022df016b..f907712d833a94c801e4eeb846c01c0538057c0d 100644 (file)
@@ -66,7 +66,7 @@ Unicode Integration Proposal (see file Misc/unicode.txt).
 
 #include "mymath.h"
 #include "unicodeobject.h"
-#include <ucnhash.h>
+#include "ucnhash.h"
 
 #if defined(HAVE_LIMITS_H)
 #include <limits.h>