Update Main.cpp

forgot to include libary stdlib.h for system function.
This commit is contained in:
Isak 2018-03-17 20:39:43 +01:00 committed by GitHub
parent 82f40544a5
commit 9ce6ec1898
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -3,6 +3,7 @@
#include <string>
#include <vector>
#include <unistd.h> //for get_current_dir() and chdir()
#include <stdlib.h> //for system
#include "headers/Functions.h"
typedef std::string str_t;