1/*
2 *  fork_program.h
3 *  kext_tools
4 *
5 *  Created by nik on 5/11/08.
6 *  Copyright 2008 Apple Inc. All rights reserved.
7 *
8 */
9#ifndef _FORK_PROGRAM
10#define _FORK_PROGRAM
11
12#include <CoreFoundation/CoreFoundation.h>
13#include <unistd.h>
14int fork_program(
15    const char * argv0,
16    char * const argv[],
17    Boolean      wait);
18
19#endif /* _FORK_PROGRAM */
20