diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2025-08-23 18:20:43 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2025-08-23 18:20:43 -0400 |
| commit | a4b8ef38b1d7a26b4e6bfa966f021a237bf16ce1 (patch) | |
| tree | a4137025b4096749341513f44c12d381ceb636bf /lib | |
| parent | ecf08ab61fe49101b6c769badf362d21d8699df4 (diff) | |
Lots of cleanups
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/commands/commands.c | 2 | ||||
| -rw-r--r-- | lib/random/chacha.h | 2 | ||||
| -rw-r--r-- | lib/time/time.tm | 1 | ||||
| -rw-r--r-- | lib/time/time_defs.h | 3 |
4 files changed, 5 insertions, 3 deletions
diff --git a/lib/commands/commands.c b/lib/commands/commands.c index 1e9afe8e..80710387 100644 --- a/lib/commands/commands.c +++ b/lib/commands/commands.c @@ -23,7 +23,7 @@ static void xpipe(int fd[2]) { } int run_command(Text_t exe, List_t arg_list, Table_t env_table, - OptionalList_t input_bytes, List_t *output_bytes, List_t *error_bytes) + OptionalList_t input_bytes, List_t *output_bytes, List_t *error_bytes) { pthread_testcancel(); diff --git a/lib/random/chacha.h b/lib/random/chacha.h index 4b1283ed..b803c24a 100644 --- a/lib/random/chacha.h +++ b/lib/random/chacha.h @@ -86,7 +86,7 @@ chacha_encrypt_bytes(chacha_ctx *chacha, const u8 *m, u8 *c, u32 bytes) { u32 x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15; u32 j0, j1, j2, j3, j4, j5, j6, j7, j8, j9, j10, j11, j12, j13, j14, j15; - u8 *ctarget = NULL; + u8 *ctarget = (u8*)0; u8 tmp[64]; unsigned int i; diff --git a/lib/time/time.tm b/lib/time/time.tm index 456b5f08..d26d7218 100644 --- a/lib/time/time.tm +++ b/lib/time/time.tm @@ -1,4 +1,5 @@ # Time - a module for dealing with dates and times +use <math.h> use ./time_defs.h enum Weekday(Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday) diff --git a/lib/time/time_defs.h b/lib/time/time_defs.h index 30000983..2ae1d9e4 100644 --- a/lib/time/time_defs.h +++ b/lib/time/time_defs.h @@ -1,6 +1,7 @@ #pragma once -#include <time.h> +#include <stdlib.h> #include <sys/time.h> +#include <time.h> typedef struct timeval Time; |
