]> git.ipfire.org Git - thirdparty/glibc.git/blame - elf/tst-nodelete2mod.c
Update copyright dates not handled by scripts/update-copyrights.
[thirdparty/glibc.git] / elf / tst-nodelete2mod.c
CommitLineData
f25238ff 1/* Undefined symbol. */
02d5e5d9
PK
2extern int not_exist (void);
3
4int foo (void)
5{
f25238ff 6 return not_exist ();
02d5e5d9 7}