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

This commit is contained in:
Sandro Tosi 2011-08-02 16:16:11 +02:00
parent 22a7b488e0
commit 25fb852e55
1 changed files with 2 additions and 2 deletions

View File

@ -869,10 +869,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::