From 79b9830b1d8e9330a428b2053d0149b0ea78d609 Mon Sep 17 00:00:00 2001 From: Dan Albert Date: Fri, 9 Jan 2015 15:24:28 -0800 Subject: [PATCH] Markdown-ify 5137db3. Most of these are just aesthetic, but the `_FILE_OFFSET_BITS` probably would have rendered partly as italics and skipped some underscores. GitHub's Markdown also doesn't identify our bug URLs as links, so mark them explicitly. Change-Id: I62be7542aa43929d847de2bad7d8d1ed3aaa640c --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 5e9587d2d..2c42b3ba5 100644 --- a/README.md +++ b/README.md @@ -264,12 +264,12 @@ LP32 ABI bugs This probably belongs in the NDK documentation rather than here, but these are the known ABI bugs in LP32: - * time_t is 32-bit. http://b/5819737 + * `time_t` is 32-bit. - * off_t is 32-bit. There is off64_t, but no _FILE_OFFSET_BITS support. - Many of the off64_t functions are missing in older releases, and + * `off_t` is 32-bit. There is `off64_t`, but no `_FILE_OFFSET_BITS` support. + Many of the `off64_t` functions are missing in older releases, and stdio uses 32-bit offsets, so there's no way to fully implement - _FILE_OFFSET_BITS. + `_FILE_OFFSET_BITS`. - * sigset_t is too small on ARM and x86 (but correct on MIPS), so support - for real-time signals is broken. http://b/5828899 + * `sigset_t` is too small on ARM and x86 (but correct on MIPS), so support + for real-time signals is broken.