blob: 35ff4fd3c829964b5700be81e76fdb4f1bfedd00 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef _GPXE_MONOJOB_H
#define _GPXE_MONOJOB_H
/** @file
*
* Single foreground job
*
*/
FILE_LICENCE ( GPL2_OR_LATER );
struct job_interface;
extern struct job_interface monojob;
extern int monojob_wait ( const char *string );
#endif /* _GPXE_MONOJOB_H */
|