[issue4895] Missing strdup() under MS Windows CE

2009-01-11 Thread Martin v. Löwis
Martin v. Löwis added the comment: Thanks for the patch. Committed as r68527, r68528. -- nosy: +loewis resolution: -> accepted status: open -> closed ___ Python tracker ___

[issue4895] Missing strdup() under MS Windows CE

2009-01-09 Thread Ulrich Eckhardt
New submission from Ulrich Eckhardt : CE6 doesn't provide strdup() but provides an equivalent _strdup() in stdlib.h. The attached patch simply #defines strdup _strdup after including said header file. -- components: Interpreter Core files: python-2.7-wince-strdup.0.patch keywords: patch