summaryrefslogtreecommitdiffstats
path: root/Tests/CompileDefinitions/target_prop/usetgt.c
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/CompileDefinitions/target_prop/usetgt.c')
-rw-r--r--Tests/CompileDefinitions/target_prop/usetgt.c11
1 files changed, 7 insertions, 4 deletions
diff --git a/Tests/CompileDefinitions/target_prop/usetgt.c b/Tests/CompileDefinitions/target_prop/usetgt.c
index 6672a3e..8408a90 100644
--- a/Tests/CompileDefinitions/target_prop/usetgt.c
+++ b/Tests/CompileDefinitions/target_prop/usetgt.c
@@ -1,10 +1,13 @@
#ifndef TGT_DEF
-# error TGT_DEF incorrectly not defined
+#error TGT_DEF incorrectly not defined
#endif
#ifndef TGT_TYPE_STATIC_LIBRARY
-# error TGT_TYPE_STATIC_LIBRARY incorrectly not defined
+#error TGT_TYPE_STATIC_LIBRARY incorrectly not defined
#endif
#ifdef TGT_TYPE_EXECUTABLE
-# error TGT_TYPE_EXECUTABLE incorrectly defined
+#error TGT_TYPE_EXECUTABLE incorrectly defined
#endif
-int main(void) { return 0; }
+int main(void)
+{
+ return 0;
+}