在 OSX 10.6.5 上编译 C 程序时,我收到了一些警告,这似乎非常关键。
extras.c:15: warning: implicit declaration of function ‘time’
extras.c: In function ‘outlog’:
extras.c:363: warning: implicit declaration of function ‘ctime’
对应的行如下:
第 13-15 行:
RANDNUMGEN = gsl_rng_alloc(gsl_rng_taus);
long t1;
(void) time(&t1);
第 360-363 行:
if (LOG==NULL) { LOG=stdout;}
TVAL = time(NULL);
char* TIMESTRING = ctime(&TVAL);
我相信该程序最初是为 Linux 编写的,所以我想知道这两个平台time
之间是否存在差异?ctime