mirror of
https://github.com/MariaDB/server.git
synced 2025-01-22 23:04:20 +01:00
63b1969fbb
git-svn-id: file:///svn/toku/tokudb@43179 c7de825b-a66e-492c-adef-691d508d4ae1
10 lines
205 B
C
10 lines
205 B
C
#include <stdio.h>
|
|
#include <toku_stdint.h>
|
|
#include <unistd.h>
|
|
#include <toku_assert.h>
|
|
#include "toku_os.h"
|
|
|
|
int main(void) {
|
|
assert(toku_os_get_pagesize() == sysconf(_SC_PAGESIZE));
|
|
return 0;
|
|
}
|