1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-27 08:31:16 +02:00

* Bug fix for building on some old installations (contributed by Pjotr).

This commit is contained in:
Eelco Dolstra 2008-10-16 14:16:03 +00:00
parent fa61ee70ee
commit 9d6d50269b

View file

@ -5,6 +5,12 @@
#include <limits.h>
/* Needed for some ancient environments. */
#ifndef ULLONG_MAX
#define ULLONG_MAX 18446744073709551615
#endif
namespace nix {