From d7fa91b54c7dcce8dedbe32f37cf849f530f8864 Mon Sep 17 00:00:00 2001 From: louie Date: Mon, 28 Dec 2020 12:47:47 -0800 Subject: Cleaned up ifdefs --- unix/draw.c | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 unix/draw.c (limited to 'unix/draw.c') diff --git a/unix/draw.c b/unix/draw.c new file mode 100644 index 0000000..f6424d0 --- /dev/null +++ b/unix/draw.c @@ -0,0 +1,16 @@ +#include +#include + +#include "../draw.h" + +void launch(); + +void launch(){ + char full_command[BUF_LEN]; + + strcpy(full_command, get_launch()); + strcat(full_command, " > /dev/null 2>&1 &"); + system(full_command); + + return; +} -- cgit