dj(1): revert changes to function return type formatting
This commit is contained in:
parent
71e98dbde7
commit
c2e6744e2b
18
src/dj.c
18
src/dj.c
@ -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);
|
||||||