Jambase unix: default compilers changed to gcc and g++; OPTIM is empty
[k8jam.git] / execcmd.h
blob8efdc95baeeee73e1603414625038a0983762716
1 /*
2 * Copyright 1993, 1995 Christopher Seiwald.
4 * This file is part of Jam - see jam.c for Copyright information.
5 */
7 /*
8 * execcmd.h - execute a shell script
10 * 05/04/94 (seiwald) - async multiprocess interface
13 void execcmd(
14 char *string,
15 void (*func)( void *closure, int status ),
16 void *closure,
17 LIST *shell );
19 int execwait();
21 # define EXEC_CMD_OK 0
22 # define EXEC_CMD_FAIL 1
23 # define EXEC_CMD_INTR 2