mirror of
https://github.com/MariaDB/server.git
synced 2025-03-11 09:38:38 +01:00
10 lines
197 B
C
10 lines
197 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() == getpagesize());
|
|
return 0;
|
|
}
|