summaryrefslogtreecommitdiff
path: root/tests/frontend/simple/files/dev-files/usr/include/pony.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/frontend/simple/files/dev-files/usr/include/pony.h')
-rw-r--r--tests/frontend/simple/files/dev-files/usr/include/pony.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/frontend/simple/files/dev-files/usr/include/pony.h b/tests/frontend/simple/files/dev-files/usr/include/pony.h
new file mode 100644
index 000000000..40bd0c2e7
--- /dev/null
+++ b/tests/frontend/simple/files/dev-files/usr/include/pony.h
@@ -0,0 +1,12 @@
+#ifndef __PONY_H__
+#define __PONY_H__
+
+#define PONY_BEGIN "Once upon a time, there was a pony."
+#define PONY_END "And they lived happily ever after, the end."
+
+#define MAKE_PONY(story) \
+ PONY_BEGIN \
+ story \
+ PONY_END
+
+#endif /* __PONY_H__ */