summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSolomon Peachy <pizza@shaftnet.org>2021-07-08 09:54:12 -0400
committerSolomon Peachy <pizza@shaftnet.org>2021-07-08 13:55:12 +0000
commita8fd590003774cb5554eaec2d5805d5e5b699fc4 (patch)
tree0154bf09ad830dbda7157b20abc8bcaf5c3a21cc
parentc174d3a544b92be55bc0d09443522386363129f5 (diff)
downloadrockbox-a8fd590003774cb5554eaec2d5805d5e5b699fc4.tar.gz
rockbox-a8fd590003774cb5554eaec2d5805d5e5b699fc4.zip
Hosted & tool builds need utime.h
Should fix the warnings introduced in c174d3a5 Change-Id: Ib4bd863caef4dedf28dadab8b58b9a165ed4ef9b
-rw-r--r--firmware/export/fat.h3
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 @@
23 23
24#include <stdbool.h> 24#include <stdbool.h>
25#include <sys/types.h> 25#include <sys/types.h>
26#ifndef __PCTOOL__
27#include <utime.h>
28#endif
26#include <time.h> 29#include <time.h>
27#include "config.h" 30#include "config.h"
28#include "system.h" 31#include "system.h"