]> git.ipfire.org Git - thirdparty/glibc.git/blame - elf/tst-unique1mod1.c
iconv, localedef: avoid floating point rounding differences [BZ #24372]
[thirdparty/glibc.git] / elf / tst-unique1mod1.c
CommitLineData
415ac3df
UD
1#include <config.h>
2
415ac3df 3asm (".data;"
7b8e0d49 4 ".globl var\n"
b67e9372 5 ".type var, %gnu_unique_object\n"
415ac3df
UD
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}