gpt4 book ai didi

c - 在 C 代码中返回类型默认为 'int'

转载 作者:太空宇宙 更新时间:2023-11-04 07:33:14 24 4
gpt4 key购买 nike

somefile.h 的内容

#ifndef __SOMEFILE_H
#define __SOMEFILE_H

#ifdef __cplusplus
extern "C" {
#endif

typedef struct _table_t table_t;

struct _table_t
{
void (*somefunction1)();
void (*somefunction2)(int a);
void (*somefunction3)(int a, int *b);
};

#ifdef __cplusplus
}
#endif
#endif <-- I am getting the error here

somefile.h 包含在 .cpp 和 .c 文件中。在 Linux 上构建此项目时,出现以下错误:

error: return type defaults to 'int'

我该如何解决这个问题?

最佳答案

你有一个没有定义返回类型的函数。寻找类似的东西

Foo(void);

Foo(void) {
printf("foo you too");
}

关于c - 在 C 代码中返回类型默认为 'int',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11417124/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com