Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
.project
*~
aclocal.m4
autom4te.cache/
Expand Down
5 changes: 3 additions & 2 deletions src/zooadd.c
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,9 @@
#include "options.h"

#ifdef HAVE_NFTW
#define _XOPEN_SOURCE 500 /* Rrequired on GLIBC */
#define _GNU_SOURCE /* -- " -- " -- " -- */
#define _XOPEN_SOURCE 500 /* Required on GLIBC */
#define _GNU_SOURCE /* -- " -- " -- " -- */
#define _POSIX_C_SOURCE 200809L /* -- " -- " -- " -- */
#include <ftw.h>
#endif

Expand Down