Removed unnecessary sys/types.h include

Likely included at some point for ssize_t, this is no longer needed and
causes some problems for embedded compilers.

Currently littlefs doesn't even use size_t/ssize_t in its definition of
lfs_size_t/lfs_ssize_t, so I don't think this will ever be required.

Found by LDong-Arm, vvn-git
This commit is contained in:
Christopher Haster 2023-05-17 11:11:27 -05:00
parent ec3ec86bcc
commit 8a4ee65fc3
1 changed files with 0 additions and 1 deletions

View File

@ -23,7 +23,6 @@
// System includes
#include <stdint.h>
#include <stdbool.h>
#include <sys/types.h>
#include <string.h>
#include <inttypes.h>