summaryrefslogtreecommitdiffstats
path: root/exfat/libexfat/compiler.h
diff options
context:
space:
mode:
authorbigbiff bigbiff <bigbiff@teamw.in>2014-09-05 02:58:41 +0200
committerEthan Yonker <dees_troy@teamw.in>2014-09-05 15:46:39 +0200
commit2e33c5ee0b1a1ece068489e8fd99f3e4eb3501b5 (patch)
tree697067dc07351c8e6a6a7d5e3228143304a6b8ae /exfat/libexfat/compiler.h
parentMTP: Use fork instead of pthread (diff)
downloadandroid_bootable_recovery-2e33c5ee0b1a1ece068489e8fd99f3e4eb3501b5.tar
android_bootable_recovery-2e33c5ee0b1a1ece068489e8fd99f3e4eb3501b5.tar.gz
android_bootable_recovery-2e33c5ee0b1a1ece068489e8fd99f3e4eb3501b5.tar.bz2
android_bootable_recovery-2e33c5ee0b1a1ece068489e8fd99f3e4eb3501b5.tar.lz
android_bootable_recovery-2e33c5ee0b1a1ece068489e8fd99f3e4eb3501b5.tar.xz
android_bootable_recovery-2e33c5ee0b1a1ece068489e8fd99f3e4eb3501b5.tar.zst
android_bootable_recovery-2e33c5ee0b1a1ece068489e8fd99f3e4eb3501b5.zip
Diffstat (limited to 'exfat/libexfat/compiler.h')
-rw-r--r--exfat/libexfat/compiler.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/exfat/libexfat/compiler.h b/exfat/libexfat/compiler.h
index 6edd8ec7f..473726d3a 100644
--- a/exfat/libexfat/compiler.h
+++ b/exfat/libexfat/compiler.h
@@ -4,7 +4,7 @@
showstopper.
Free exFAT implementation.
- Copyright (C) 2010-2013 Andrew Nayenko
+ Copyright (C) 2010-2014 Andrew Nayenko
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -24,6 +24,12 @@
#ifndef COMPILER_H_INCLUDED
#define COMPILER_H_INCLUDED
+/*
+#if __STDC_VERSION__ < 199901L
+#error C99-compliant compiler is required
+#endif
+*/
+
#if defined(__clang__)
#define PRINTF __attribute__((format(printf, 1, 2)))