repo.or.cz
/
lcapit-junk-code.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Introduce pet-projects dir
[lcapit-junk-code.git]
/
snippets
/
C
/
pagesize.c
blob
07d5a9bfdc05fbb31e77d4eb8042d082b36d9ef7
1
#include <stdio.h>
2
#include <unistd.h>
3
4
int
main
(
void
)
5
{
6
printf
(
"%d
\n
"
,
getpagesize
());
7
return
0
;
8
}