diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2019-02-06 23:23:22 -0500 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2019-02-06 23:23:22 -0500 |
commit | 41fde4795277fec5a57ecb6d43d9b39123739c3f (patch) | |
tree | 8cf844280d5c68f65435d853d3514f2118d17cc2 /main.c | |
parent | 010a755370eeb7450c0def58a8d5830ddcca7938 (diff) | |
download | bfs-41fde4795277fec5a57ecb6d43d9b39123739c3f.tar.xz |
Turn on -Wstrict-prototypes
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -28,7 +28,7 @@ * future open() calls may use those file descriptors, and std{in,out,err} will * use them unintentionally. */ -static int open_std_streams() { +static int open_std_streams(void) { #ifdef O_PATH const int inflags = O_PATH, outflags = O_PATH; #else |