blob: 12374e1f7c65a2d475becb0f6bae67d0a347e9a8 [file] [log] [blame]
Pavel Labathdf2ad4c2016-05-25 10:48:16 +00001// Compile with $CC -nostdlib -shared TestModule.c -o TestModule.so
2// The actual contents of the test module is not important here. I am using this because it
3// produces an extremely tiny (but still perfectly valid) module.
4
5void
6boom(void)
7{
8 char *BOOM;
9 *BOOM = 47;
10}