diff options
author | Peter Maydell <peter.maydell@linaro.org> | 2012-07-18 15:10:26 +0100 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2012-07-31 20:06:01 +0000 |
commit | 3014ee001d5da6c8a6e907901def5704947d513a (patch) | |
tree | 1ccbcef8b37df7e8a7bd44622c63c831bba8b424 | |
parent | fea08e0803f9cf2fc888c5b9fc0fd9b93a2272e7 (diff) | |
download | qemu-3014ee001d5da6c8a6e907901def5704947d513a.tar.gz qemu-3014ee001d5da6c8a6e907901def5704947d513a.tar.bz2 qemu-3014ee001d5da6c8a6e907901def5704947d513a.zip |
configure: Fix compile warning in utimensat/futimens test
Fix compile warning in the utimensat/futimens test ("implicit
declaration of function 'utimensat'", ditto futimens) by
adding a missing include.
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Stefan Weil <sw@weilnetz.de>
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
-rwxr-xr-x | configure | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -2343,6 +2343,7 @@ cat > $TMPC << EOF #define _ATFILE_SOURCE #include <stddef.h> #include <fcntl.h> +#include <sys/stat.h> int main(void) { |