Skip to content

Commit

Permalink
(all) fixed copmilation errors and warnings on cygwin and msys2
Browse files Browse the repository at this point in the history
  • Loading branch information
acid-maker committed Jun 21, 2016
1 parent 54cbea7 commit 713eb94
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions configure
Original file line number Diff line number Diff line change
Expand Up @@ -12366,6 +12366,7 @@ case $target_os in
;;
*)
fuse=no
CPPFLAGS="$CPPFLAGS -D_GNU_SOURCE"
;;
esac

Expand Down
1 change: 1 addition & 0 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ case $target_os in
;;
*)
fuse=no
CPPFLAGS="$CPPFLAGS -D_GNU_SOURCE"
;;
esac

Expand Down
2 changes: 1 addition & 1 deletion mfstests/mfstest_clocks.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@
* or visit http://www.gnu.org/licenses/gpl-2.0.html
*/

#include <sys/types.h>
#include <sys/select.h>
#include <sys/time.h>
#include <sys/types.h>
#include <unistd.h>
#include <stdio.h>
#include <string.h>
Expand Down
2 changes: 1 addition & 1 deletion mfstests/mfstest_delayrun.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@
* or visit http://www.gnu.org/licenses/gpl-2.0.html
*/

#include <sys/types.h>
#include <sys/select.h>
#include <sys/time.h>
#include <sys/types.h>
#include <stdlib.h>

#include "delayrun.h"
Expand Down

1 comment on commit 713eb94

@pkonopelko
Copy link
Member

@pkonopelko pkonopelko commented on 713eb94 Jun 21, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Closes #13

Please sign in to comment.