Commit 4f4b799b authored by Guido van Rossum's avatar Guido van Rossum

Jack Jansen: Use include "" instead of <>; and staticforward declarations

parent e8d2d6b3
#include <Python.h>
#include "Python.h"
#include <stdlib.h>
/* --- C API ----------------------------------------------------*/
......
#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)
{
......
......@@ -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>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment