Sign in
cobalt
/
cobalt
/
25399f97090f8a86f56525c38486080cb2747250
/
.
/
src
/
third_party
/
musl
/
src
/
legacy
/
getpagesize.c
blob: 0fc29ffcdf0f807431be882bbf7694c3ea97e6fc [
file
] [
log
] [
blame
]
#define
_GNU_SOURCE
#include
<unistd.h>
#include
"libc.h"
int
getpagesize
(
void
)
{
return
PAGE_SIZE
;
}