Merge pull request #21 from ungureanuvladvictor/generic_folder_structure
[smdp.git] / src / cstack.c
similarity index 98%
rename from cstack.c
rename to src/cstack.c
index f56ee2c..aafb95f 100644 (file)
--- a/cstack.c
@@ -21,7 +21,7 @@
 
 #include <stdlib.h> // malloc, realloc
 
-#include "include/cstack.h"
+#include "cstack.h"
 
 cstack_t *cstack_init() {
     cstack_t *stack = malloc(sizeof(cstack_t));