Fix compilation issues

Fixed compilation errors:
- Added <dirent.h> include to file_system.h for DIR type on Linux
- Replaced xxx placeholder in chunk_server.c with actual chunks_dir path
  using state->store.path
This commit is contained in:
Claude
2025-11-13 00:47:56 +00:00
parent 6c2ea4bce9
commit 14cd2f1ac6
2 changed files with 6 additions and 1 deletions
+4
View File
@@ -3,6 +3,10 @@
#include "basic.h"
#ifndef _WIN32
#include <dirent.h>
#endif
typedef struct {
uint64_t data;
} Handle;