Skip to content

Commit

Permalink
fix uptime()
Browse files Browse the repository at this point in the history
  • Loading branch information
lmangani committed Jan 4, 2025
1 parent 7021a58 commit 34b669a
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/chsql_system_extension.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,14 @@
#include <fstream>
#include <sstream>
#include <unistd.h>
#if defined(__linux__)
#include <sys/sysinfo.h>
#include <iterator>
#elif defined(_WIN32)
// windows includes
#elif defined(__EMSCRIPTEN__)
// wasm includes
#endif

namespace duckdb {

Expand Down

0 comments on commit 34b669a

Please sign in to comment.