diff options
author | hansr <hk-git@circlestorm.org> | 2014-10-12 22:57:27 +0200 |
---|---|---|
committer | hansr <hk-git@circlestorm.org> | 2014-10-12 22:57:27 +0200 |
commit | 3f8e26e0b7605f49057b09d2eafce05511ce0c29 (patch) | |
tree | da90f7ed3e20d4b22e68f59a24c19d2ed7f160ec /gzread.c | |
parent | f7e1e0130fb198fa2d4d62b8990d2ab205985b3f (diff) |
Remove workarounds for non-ANSI-C compatible compilers (Part 2)
-Removing usage of OF() definition
Diffstat (limited to 'gzread.c')
-rw-r--r-- | gzread.c | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -6,12 +6,12 @@ #include "gzguts.h" /* Local functions */ -local int gz_load OF((gz_statep, unsigned char *, unsigned, unsigned *)); -local int gz_avail OF((gz_statep)); -local int gz_look OF((gz_statep)); -local int gz_decomp OF((gz_statep)); -local int gz_fetch OF((gz_statep)); -local int gz_skip OF((gz_statep, z_off64_t)); +local int gz_load (gz_statep, unsigned char *, unsigned, unsigned *); +local int gz_avail (gz_statep); +local int gz_look (gz_statep); +local int gz_decomp (gz_statep); +local int gz_fetch (gz_statep); +local int gz_skip (gz_statep, z_off64_t); /* Use read() to load a buffer -- return -1 on error, otherwise 0. Read from state->fd, and update state->eof, state->err, and state->msg as appropriate. |