From cdea6b0e8c1e51c9962f73e183a3bd72ed63b40f Mon Sep 17 00:00:00 2001 From: Louie S Date: Sun, 6 Nov 2022 14:53:23 -0800 Subject: Restructure repository --- unix/draw.c | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 unix/draw.c (limited to 'unix/draw.c') diff --git a/unix/draw.c b/unix/draw.c deleted file mode 100644 index ae7f758..0000000 --- a/unix/draw.c +++ /dev/null @@ -1,14 +0,0 @@ -#include -#include - -#include "../include/draw.h" - -void launch(){ - char full_command[BUF_LEN]; - - strcpy(full_command, get_launch()); - strcat(full_command, " > /dev/null 2>&1 &"); - system(full_command); - - return; -} -- cgit