about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorMarco Peereboom <marco@conformal.com>2012-06-01 08:18:00 -0500
committerMarco Peereboom <marco@conformal.com>2012-06-01 08:18:00 -0500
commit6697fce3a8cf6a8f80b32015cf3668fdc9b5a0c8 (patch)
tree68803a5ba38801c0b66f0600c0712212ca9bd901
parent6a8a64466ca291a6e2e99b071ab99cc8f955ed49 (diff)
downloadxombrero-6697fce3a8cf6a8f80b32015cf3668fdc9b5a0c8.tar.gz
add os_init to generic unix.c file, move it when needed
-rw-r--r--unix.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/unix.c b/unix.c
index 93f9948..a5a765e 100644
--- a/unix.c
+++ b/unix.c
@@ -16,6 +16,9 @@
 
 #include <xombrero.h>
 
+/* put this here for now, move away if unix needs something special */
+void	(*os_init)(void);
+
 int
 fork_exec(struct tab *t, char *argv0, const gchar *argv1, char *error, int loud)
 {