Skip to content

Commit

Permalink
Fix warning in util.c
Browse files Browse the repository at this point in the history
  • Loading branch information
nicowilliams committed Jan 1, 2015
1 parent 22f55aa commit 902aa39
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions util.c
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@

#ifdef HAVE_MEMMEM
#define _GNU_SOURCE
#endif

#include <sys/types.h>
#include <sys/stat.h>
#include <assert.h>
#include <fcntl.h>

#ifdef HAVE_MEMMEM
#define _GNU_SOURCE
#include <limits.h>
#include <string.h>
#endif
#include <stdlib.h>
#include <unistd.h>
#ifndef WIN32
#include <pwd.h>
#endif
#include <stdlib.h>
#include <unistd.h>
#include <limits.h>


#include "util.h"
Expand Down

0 comments on commit 902aa39

Please sign in to comment.