summaryrefslogtreecommitdiff
path: root/src/util.h
diff options
context:
space:
mode:
authorJohannes Hofmann <johannes.hofmann@gmx.de>2005-03-17 17:46:19 +0000
committerJohannes Hofmann <johannes.hofmann@gmx.de>2005-03-17 17:46:19 +0000
commit57c758b640c7eba7fc8271722e51a19ef7da1d0a (patch)
tree515512446dd94c3b530475c3b7fef2e7bb024603 /src/util.h
parentc7349d9ae89fea82cf7137da2a0322690ee6d80f (diff)
autoconf (by Peter Seiderer)
autoconf (by Peter Seiderer)
Diffstat (limited to 'src/util.h')
-rw-r--r--src/util.h14
1 files changed, 13 insertions, 1 deletions
diff --git a/src/util.h b/src/util.h
index ebe0e49..d5a71e1 100644
--- a/src/util.h
+++ b/src/util.h
@@ -1,5 +1,5 @@
/*
- * "$Id: util.h,v 1.1 2005/02/28 17:56:51 hofmann Exp $"
+ * "$Id: util.h,v 1.2 2005/03/17 18:46:20 hofmann Exp $"
*
* flpsed program.
*
@@ -20,8 +20,20 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
* USA.
*/
+#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