Add default empty files and a CMakeLists.txt to build.

This commit is contained in:
2017-01-02 17:54:25 -08:00
parent ffb44d7ba1
commit ad5fade9f6
4 changed files with 22 additions and 0 deletions

1
src/libregex.c Normal file
View File

@@ -0,0 +1 @@
#include "libregex.h"

5
src/main.c Normal file
View File

@@ -0,0 +1,5 @@
#include <stdlib.h>
int main(int argc, char** argv){
return EXIT_SUCCESS;
}