aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/libraries
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/libraries/LumbrJack.c12
-rw-r--r--src/libraries/LumbrJack.h2
2 files changed, 13 insertions, 1 deletions
diff --git a/src/libraries/LumbrJack.c b/src/libraries/LumbrJack.c
index b92dc97..ee45f80 100644
--- a/src/libraries/LumbrJack.c
+++ b/src/libraries/LumbrJack.c
@@ -6,6 +6,18 @@
6#include <unistd.h> 6#include <unistd.h>
7#include "LumbrJack.h" 7#include "LumbrJack.h"
8 8
9const char *dirs[] =
10{
11 ".cache",
12 ".cache/compiled",
13 ".cache/converted",
14 ".cache/sha1",
15 ".cache/types",
16 ".cache/unpacked",
17 ".download",
18 "inventory",
19 NULL
20};
9 21
10static char dateTime[DATE_TIME_LEN]; 22static char dateTime[DATE_TIME_LEN];
11static Eina_Prefix *prefix = NULL; 23static Eina_Prefix *prefix = NULL;
diff --git a/src/libraries/LumbrJack.h b/src/libraries/LumbrJack.h
index 74249ed..ff948fc 100644
--- a/src/libraries/LumbrJack.h
+++ b/src/libraries/LumbrJack.h
@@ -39,7 +39,7 @@ typedef enum
39} boolean; 39} boolean;
40#endif 40#endif
41 41
42 42extern const char *dirs[];
43extern int logDom; 43extern int logDom;
44 44
45int HamrTime(char *argv0, void *main, int logDom); 45int HamrTime(char *argv0, void *main, int logDom);