blob: 025ffd5a414f7e8e9f736be369c1015abb3bed39 [file] [log] [blame]
ruudaf6a3f5942015-10-07 17:32:111// Copyright 2015 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "base/process/process_metrics.h"
6
avibeced7c2015-12-24 06:47:597#include <stddef.h>
ruudaf6a3f5942015-10-07 17:32:118#include <unistd.h>
9
10namespace base {
11
12size_t GetPageSize() {
13 return getpagesize();
14}
15
16} // namespace base