From 00b1c74a506f31b0d857761cece3470ff3e85fd7 Mon Sep 17 00:00:00 2001 From: Guillaume Chatelet Date: Mon, 12 Feb 2018 10:53:52 +0100 Subject: [PATCH] Advertise C99 instead of gnu89. Fixes #11 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 33d60c4..1a82f4f 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ instructions) at runtime. - **Extensible.** Easy to add missing features or architectures. - **Compatible with old compilers** and available on many architectures so it can be used widely. To ensure that cpu_features works on as many platforms - as possible, we implemented it in a highly portable version of C: gnu89. + as possible, we implemented it in a highly portable version of C: C99. - **Sandbox-compatible.** The library uses a variety of strategies to cope with sandboxed environments or when `cpuid` is unavailable. This is useful when running integration tests in hermetic environments.