aboutsummaryrefslogtreecommitdiffstats
path: root/lua/tests/indent/c/preproc_func.c
diff options
context:
space:
mode:
Diffstat (limited to 'lua/tests/indent/c/preproc_func.c')
-rw-r--r--lua/tests/indent/c/preproc_func.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/lua/tests/indent/c/preproc_func.c b/lua/tests/indent/c/preproc_func.c
deleted file mode 100644
index f1f38feb9..000000000
--- a/lua/tests/indent/c/preproc_func.c
+++ /dev/null
@@ -1,9 +0,0 @@
-#define FOO(x) do { \
- x = x + 1; \
- x = x / 2; \
- } while (x > 0);
-
-void foo(int x)
-{
- FOO(x);
-}