diff options
author | Solomon Peachy <pizza@shaftnet.org> | 2021-07-08 09:54:12 -0400 |
---|---|---|
committer | Solomon Peachy <pizza@shaftnet.org> | 2021-07-08 13:55:12 +0000 |
commit | a8fd590003774cb5554eaec2d5805d5e5b699fc4 (patch) | |
tree | 0154bf09ad830dbda7157b20abc8bcaf5c3a21cc | |
parent | c174d3a544b92be55bc0d09443522386363129f5 (diff) | |
download | rockbox-a8fd590003.tar.gz rockbox-a8fd590003.zip |
Hosted & tool builds need utime.h
Should fix the warnings introduced in c174d3a5
Change-Id: Ib4bd863caef4dedf28dadab8b58b9a165ed4ef9b
-rw-r--r-- | firmware/export/fat.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/firmware/export/fat.h b/firmware/export/fat.h index b83ceeec0d..57a87ecd4e 100644 --- a/firmware/export/fat.h +++ b/firmware/export/fat.h @@ -23,6 +23,9 @@ #include <stdbool.h> #include <sys/types.h> +#ifndef __PCTOOL__ +#include <utime.h> +#endif #include <time.h> #include "config.h" #include "system.h" |