dj(1): revert changes to function return type formatting

This commit is contained in:
Emma Tebibyte 2024-07-15 13:09:09 -06:00
parent 71e98dbde7
commit c2e6744e2b
Signed by: emma
GPG Key ID: 06FA419A1698C270

View File

@ -66,7 +66,8 @@ static int write_flags = O_WRONLY | O_CREAT;
/* Macro to check if fd is stdin or stdout */ /* Macro to check if fd is stdin or stdout */
#define fdisstd(fd) ((fd) == STDIN_FILENO || (fd) == STDOUT_FILENO) #define fdisstd(fd) ((fd) == STDIN_FILENO || (fd) == STDOUT_FILENO)
static struct Io * Io_read(struct Io *io) { static struct Io *
Io_read(struct Io *io) {
int t; int t;
assert(io->bs > 0); assert(io->bs > 0);