summaryrefslogtreecommitdiff
path: root/src/util.h
blob: 73621398338acf03c37d1d095f804e04df8cb9ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*
 * Copyright 2007-2009 Johannes Hofmann <Johannes.Hofmann@gmx.de>
 *
 * This software may be used and distributed according to the terms
 * of the GNU General Public License, incorporated herein by reference.
 */

#ifndef _UTIL_H_
#define _UTIL_H_

#include <stdio.h>

#ifdef __cplusplus
extern "C" {
#endif

	FILE *
		pexecvp(const char *file, char *const argv[], pid_t *pid, char *type);

#ifdef __cplusplus
}
#endif

#endif