diff options
Diffstat (limited to 'unix/draw.c')
-rw-r--r-- | unix/draw.c | 14 |
1 files changed, 0 insertions, 14 deletions
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 <stdlib.h> -#include <string.h> - -#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; -} |