diff options
author | Marco Peereboom <marco@conformal.com> | 2012-06-01 08:18:00 -0500 |
---|---|---|
committer | Marco Peereboom <marco@conformal.com> | 2012-06-01 08:18:00 -0500 |
commit | 6697fce3a8cf6a8f80b32015cf3668fdc9b5a0c8 (patch) | |
tree | 68803a5ba38801c0b66f0600c0712212ca9bd901 | |
parent | 6a8a64466ca291a6e2e99b071ab99cc8f955ed49 (diff) | |
download | xombrero-6697fce3a8cf6a8f80b32015cf3668fdc9b5a0c8.tar.gz |
add os_init to generic unix.c file, move it when needed
-rw-r--r-- | unix.c | 3 |
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) { |