blob: 747e4a4ed08ff2ac7e82b96e9d5b8e0763e91b6a [file] [log] [blame]
/*
* Copyright (c) 2012 The Native Client Authors. All rights reserved.
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#include <stdio.h>
#include <unistd.h>
int main(void) {
long rv = sysconf(_SC_PAGESIZE);
printf("%ld\n", rv);
return rv != (1<<16);
}