LINUX.ORG.RU

История изменений

Исправление beastie, (текущая версия) :

Ты забыл include guards.

#ifndef __C_H
#define __C_H

struct struct_h {
    int test;
};

void func_test(struct struct_h *test);

#endif

Исходная версия beastie, :

Ты забыл include guards.

#ifndef __C_H
#define __C_H
struct struct_h{
    int test;
} struct_h;
void func_test(struct struct_h *test);
#endif