Skip to content
Merged
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
4 changes: 3 additions & 1 deletion package/CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,9 @@ Fixes
* libmdaxdr and libdcd classes in their last frame can now be pickled
(Issue #2878, PR #2911)
* AtomGroup now are pickled/unpickled without looking for its anchored
Universe (PR #2893)
Universe (PR #2893)
* ensure that unistd.h is included on macOS when compiling ENCORE's spe.c
(Issue #2934)

Enhancements
* Refactored analysis.helanal into analysis.helix_analysis
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,10 @@
#include <time.h>
#include <sys/types.h>

#ifdef __unix__
#include <unistd.h>
#endif

#ifdef _WIN32
#include <io.h>
#else /* unix-like __unix__ || __APPLE__ */
#include <unistd.h>
#endif

#define EPSILON 1e-8
Expand Down