diff options
Diffstat (limited to 'elf/tst-auditmod9b.c')
-rw-r--r-- | elf/tst-auditmod9b.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/elf/tst-auditmod9b.c b/elf/tst-auditmod9b.c new file mode 100644 index 0000000..8eeeb49 --- /dev/null +++ b/elf/tst-auditmod9b.c @@ -0,0 +1,6 @@ +__thread int a; + +int f(void) +{ + return ++a; +} |