]> granicus.if.org Git - python/commitdiff
Fix for bug #462737.
authorMarc-André Lemburg <mal@egenix.com>
Wed, 19 Sep 2001 11:21:03 +0000 (11:21 +0000)
committerMarc-André Lemburg <mal@egenix.com>
Wed, 19 Sep 2001 11:21:03 +0000 (11:21 +0000)
Include/unicodeobject.h

index d9cda95f937d244bb17d54072cb739c8ee033ec7..d7540fb2260e8ba45c6ac8743735727a5722b340 100644 (file)
@@ -52,7 +52,7 @@ Copyright (c) Corporation for National Research Initiatives.
  * OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  * -------------------------------------------------------------------- */
 
-#include "ctype.h"
+#include <ctype.h>
 
 /* === Internal API ======================================================= */
 
@@ -115,7 +115,7 @@ Copyright (c) Corporation for National Research Initiatives.
 # ifdef _HAVE_BSDI
 #  include <time.h>
 # endif
-# include "wchar.h"
+#  include <wchar.h>
 #endif
 
 /*
@@ -289,7 +289,7 @@ typedef PY_UNICODE_TYPE Py_UNICODE;
 
 #if defined(HAVE_USABLE_WCHAR_T) && defined(WANT_WCTYPE_FUNCTIONS)
 
-#include "wctype.h"
+#include <wctype.h>
 
 #define Py_UNICODE_ISSPACE(ch) iswspace(ch)