diff options
author | Daniel Friesel <derf@finalrewind.org> | 2018-01-29 21:01:03 +0100 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2018-01-29 21:01:03 +0100 |
commit | fe8ce5419da5f08e0923e759753b75edc53906b3 (patch) | |
tree | c6cf2daa40e5731b9d752ddc17585724886fd7eb /src/options.c | |
parent | c4a98974bece64c5ae6e224151e92e807d5ac271 (diff) |
Include system headers before local ones to fix type conflict on OpenBSD
Diffstat (limited to 'src/options.c')
-rw-r--r-- | src/options.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/options.c b/src/options.c index c874832..837d7a8 100644 --- a/src/options.c +++ b/src/options.c @@ -24,10 +24,11 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ +#include <strings.h> + #include "feh.h" #include "filelist.h" #include "options.h" -#include <strings.h> static void check_options(void); static void feh_getopt_theme(int argc, char **argv); |