]> git.ipfire.org Git - thirdparty/glibc.git/blame_incremental - elf/tst-unique1mod1.c
iconv, localedef: avoid floating point rounding differences [BZ #24372]
[thirdparty/glibc.git] / elf / tst-unique1mod1.c
... / ...
CommitLineData
1#include <config.h>
2
3asm (".data;"
4 ".globl var\n"
5 ".type var, %gnu_unique_object\n"
6 ".size var, 4\n"
7 "var:.zero 4\n"
8 ".previous");
9extern int var;
10
11int *
12f (void)
13{
14 var = 1;
15 return &var;
16}