#12670: merge with 3.2

This commit is contained in:
Sandro Tosi 2011-08-02 16:44:31 +02:00
commit b1290a5295
1 changed files with 2 additions and 2 deletions

View File

@ -865,10 +865,10 @@ later::
struct cell; /* forward declaration */ struct cell; /* forward declaration */
struct { struct cell {
char *name; char *name;
struct cell *next; struct cell *next;
} cell; };
The straightforward translation into ctypes code would be this, but it does not The straightforward translation into ctypes code would be this, but it does not
work:: work::