diff options
Diffstat (limited to 'tests/frontend/track-optional-project-refs/files/usr/include/pony.h')
-rw-r--r-- | tests/frontend/track-optional-project-refs/files/usr/include/pony.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/frontend/track-optional-project-refs/files/usr/include/pony.h b/tests/frontend/track-optional-project-refs/files/usr/include/pony.h new file mode 100644 index 000000000..40bd0c2e7 --- /dev/null +++ b/tests/frontend/track-optional-project-refs/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__ */ |