这是简单的 echo.c 源代码:
#include <sys/cdefs.h>
#ifndef lint
__COPYRIGHT(
"@(#) Copyright (c) 1989, 1993\n\
The Regents of the University of California. All rights reserved.\n");
#endif /* not lint */
#ifndef lint
#if 0
static char sccsid[] = "@(#)echo.c 8.1 (Berkeley) 5/31/93";
#else
__RCSID("$NetBSD: echo.c,v 1.7 1997/07/20 06:07:03 thorpej Exp $");
#endif
#endif /* not lint */
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main __P((int, char *[]));
int
main(argc, argv)
int argc;
char *argv[];
{
/*
*main code with no error at all
*/
}
使用 gcc 4.4.6 编译时,报错:
echo.c:4: error: expected declaration specifiers or â...â before string constant
echo.c:3: warning: data definition has no type or storage class
echo.c:12: error: expected declaration specifiers or â...â before string constant
echo.c:12: warning: data definition has no type or storage class
第 3 行和第 4 行是 __COPYRIGHT 宏。第 12 行是 __RCSID 宏。
如果我删除这两个宏,它会成功编译并正确运行。
经过一番谷歌搜索,我知道这两个宏是在 sys/cdefs.h 中定义的,它们是某种评论消息。
但为什么它不会在 gcc 中编译?