From c8e9a64a2140b08ad2e7eddbf8be067c84aebf57 Mon Sep 17 00:00:00 2001 From: Henry Gabryjelski Date: Mon, 27 Jan 2020 21:51:12 -0800 Subject: [PATCH] Indicate C99 standard as target for LittleFS code Resolve #358 --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 41d5890..f900674 100644 --- a/README.md +++ b/README.md @@ -115,6 +115,9 @@ the filesystem until sync or close is called on the file. ## Other notes +Littlefs is written in C, and specifically should compile with any compiler +that conforms to the `C99` standard. + All littlefs calls have the potential to return a negative error code. The errors can be either one of those found in the `enum lfs_error` in [lfs.h](lfs.h), or an error returned by the user's block device operations.