1
2
3
4
5
6
7
8
9
10
11
12
13
14
| #pragma once
|
| /**
| * @file sys/sysconf.h
| * @brief Historical synonym for `<sysconf.h>`.
| *
| * This file used to contain the declarations of sysconf and its associated constants.
| * No standard mentions a `<sys/sysconf.h>`, but there are enough users in vendor (and
| * potential NDK users) to warrant not breaking source compatibility.
| *
| * New code should use `<sysconf.h>` directly.
| */
|
| #include <bits/sysconf.h>
|
|