diff options
Diffstat (limited to 'winsup/cygwin/heap.cc')
-rw-r--r-- | winsup/cygwin/heap.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/winsup/cygwin/heap.cc b/winsup/cygwin/heap.cc index d2934f2d6..0d27d77f8 100644 --- a/winsup/cygwin/heap.cc +++ b/winsup/cygwin/heap.cc @@ -21,6 +21,8 @@ details. */ static unsigned page_const = 0; +extern "C" size_t getpagesize (); + /* Initialize the heap at process start up. */ void @@ -29,7 +31,6 @@ heap_init () /* If we're the forkee, we must allocate the heap at exactly the same place as our parent. If not, we don't care where it ends up. */ - extern size_t getpagesize (); page_const = getpagesize (); if (brkbase) { |