#12670: Fix struct code after forward declaration on ctypes doc

This commit is contained in:
Sandro Tosi 2011-08-02 16:17:14 +02:00
parent ef5c716176
commit 692dba244b

View file

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