-1

How can I make this to work ?

typedef struct {
    A_t* obj;
} A_t;

A_t is unknown. But pointer (fixed size). Can I do it without using void* ?

K V
  • 61
  • 8

1 Answers1

-2

Ok I find

typedef struct A_t A_t;
struct A_t {
    A_t* obj;
};
K V
  • 61
  • 8