|
本来这个程序是在RH9下面写的,目前我换了FC4用。结果出现以下的错误:
/home/code/psh.c:55: warning: incompatible implicit declaration of built-in function 'strlen'
/home/code/psh.c:61: warning: incompatible implicit declaration of built-in function 'strcpy'
源程序里我已经把stdlib.h给写进去了(如果不写的话错误还多)。请问这是怎么一回事?我在google上搜索过了,不止我一个人有这样的问题。请达人解释一下,最好把原因也说一下,不要光给个解决方法。
谢谢了。
P.S 这个似乎于代码无关,下面是我的代码,看不看无所谓啦:
#include <stdio.h>
#include <signal.h>
#include <stdlib.h>
#define MAXARGS 20
#define ARGLEN 100
main()
{
char *arglist[MAXARGS+1];
int numargs;
char argbuf[ARGLEN];
char * makestring();
void execute(char *arglist[]);
numargs = 0;
while(numargs<MAXARGS)
{
printf("ARG[%d]?",numargs);
if(fgets(argbuf,ARGLEN,stdin) && *argbuf != '\n')
arglist[numargs++] = makestring(argbuf);
else
{
if(numargs > 0){
arglist[numargs] = NULL;
execute(arglist);
numargs = 0;
}
}
}
return 0;
}
void execute(char *arglist[])
{
int pid,exitstatus;
pid = fork();
switch(pid){
case -1:
perror("fork failed");
exit(1);
case 0:
execvp(arglist[0],arglist);
perror("execvp failed");
exit(1);
default:
while(wait(&exitstatus) != pid);
printf("Child exited with status %d,%d\n",exitstatus>>8,exitstatus&0377);
}
}
char *makestring(char *buf)
{
char *cp;//,*malloc();
buf[strlen(buf)-1] = '\0';
cp = malloc(strlen(buf)+1);
if(cp == NULL){
fprintf(stderr,"no memory\n");
exit(1);
}
strcpy(cp,buf);
return cp;
} |
|