Skip to content

Commit 9bf7bab

Browse files
committed
Sort doc items lexicographically
1 parent a3a3848 commit 9bf7bab

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

libc/docs/dev/code_style.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,14 +43,14 @@ We define two kinds of macros:
4343

4444
* ``architectures.h`` - Target architecture properties.
4545
e.g., ``LIBC_TARGET_ARCH_IS_ARM``.
46-
* ``os.h`` - Target os properties.
47-
e.g., ``LIBC_TARGET_OS_IS_LINUX``.
48-
* ``cpu_features.h`` - Target cpu feature availability.
49-
e.g., ``LIBC_TARGET_CPU_HAS_AVX2``.
5046
* ``compiler.h`` - Host compiler properties.
5147
e.g., ``LIBC_COMPILER_IS_CLANG``.
48+
* ``cpu_features.h`` - Target cpu feature availability.
49+
e.g., ``LIBC_TARGET_CPU_HAS_AVX2``.
5250
* ``float.h`` - Floating point type properties and availability.
5351
e.g., ``LIBC_COMPILER_HAS_FLOAT128``.
52+
* ``os.h`` - Target os properties.
53+
e.g., ``LIBC_TARGET_OS_IS_LINUX``.
5454

5555
* ``src/__support/macros/config.h`` - Important compiler and platform
5656
features. Such macros can be used to produce portable code by

0 commit comments

Comments
 (0)