diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-07-09 15:53:11 +0200 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-07-09 17:37:44 +0200 |
commit | 0600cacfadf00e916340f2394f1d3bfc173a3d0b (patch) | |
tree | 4b1900b096de3d2b3ad49094e86adc310ec79dac /src/file.h | |
parent | test: attempt to fix random port selection again (diff) | |
download | cimple-0600cacfadf00e916340f2394f1d3bfc173a3d0b.tar.gz cimple-0600cacfadf00e916340f2394f1d3bfc173a3d0b.zip |
store process output in SQLite
Diffstat (limited to 'src/file.h')
-rw-r--r-- | src/file.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -19,6 +19,6 @@ int file_dup(int fd); void file_close(int fd); int file_exists(const char *path); -int file_read(int fd, char **output, size_t *size); +int file_read(int fd, unsigned char **output, size_t *size); #endif |