comparison unrar_exec.c @ 25399:45d3ecc4c7e0

Use correct #include for waitpid, fixes the warning: unrar_exec.c:127: warning: implicit declaration of function 'waitpid'
author diego
date Mon, 17 Dec 2007 00:11:33 +0000
parents f95cd1391ea0
children 0f42fb42843c
comparison
equal deleted inserted replaced
25398:1da7ab18df33 25399:45d3ecc4c7e0
19 * You should have received a copy of the GNU General Public License 19 * You should have received a copy of the GNU General Public License
20 * along with MPlayer; if not, write to the Free Software 20 * along with MPlayer; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
22 */ 22 */
23 23
24 #include <sys/types.h> 24 #include <sys/wait.h>
25 #include <unistd.h> 25 #include <unistd.h>
26 #include <fcntl.h> 26 #include <fcntl.h>
27 #include <stdlib.h> 27 #include <stdlib.h>
28 #include <stdio.h> 28 #include <stdio.h>
29 #include <string.h> 29 #include <string.h>