1. ホーム
  2. c

[解決済み] 関数 'wait' の暗黙の宣言

2022-02-11 01:02:49

質問

Implicit declaration of function 'wait' <という警告が出るのですが、プログラムを実行すると正常に動作しています。

ありがとうございました。

編集:同梱のライブラリを追加するのを忘れていました。

#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <unistd.h>


void create (char* program, char** arg_list)
{
  /* put your code here */
  pid_t childPid;
  int status;

  if((childPid = fork()) < 0){
    printf("Failed to fork() --- exiting...\n");
    exit(1);
  }
  else if (childPid == 0){ // --- inside the child process
    if(execvp(program, arg_list) < 0){ // Failed to run the command
      printf("*** Failed to exec %s\n", program);
      exit(1);
    }
  }
  else{ // --- parent process
    while(wait(&status) != childPid)
      printf("...\n");
  }
}

解決方法は?

のヘッダーが足りないのでしょう。 wait(2) :

  #include <sys/types.h>
  #include <sys/wait.h>