根据手册页strerror(errnum)
返回 a char *
,但我收到以下警告:
gcc temp.c -o temp
temp.c: In function ‘mystrerror’:
temp.c:10:4: warning: return makes pointer from integer without a cast [enabled by default]
当我运行它时出现段错误./temp 0
但不是运行它时,我得到一个段错误./temp 256
。
有人可以解释为什么会发生这种情况以及如何解决它(如果可能的话)?
温度.c
#include <stdio.h>
#include <errno.h>
char *mystrerror(int errnum)
{
switch (errnum) {
case 256:
return "My test";
default:
return strerror(errnum);
}
}
int main(int argc, char **argv)
{
int err;
if (argc > 1) {
err = atoi(argv[1]);
printf("test error (%d) %s\n", err, mystrerror(err));
}
return 0;
}