1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-29 11:41:21 +03:00
* elf/Makefile: Add rules to build and run unload2.
	* elf/unload2.c: New file.
	* elf/unload2mod.c: New file.
	* elf/unload2dep.c: New file.

	* intl/libintl.h (ngettext macro): Add missing parameter.
	(dngettext macro): Likewise.
This commit is contained in:
Ulrich Drepper
2000-10-21 02:07:22 +00:00
parent e6d18111ad
commit f6de2239e2
6 changed files with 86 additions and 19 deletions

7
elf/unload2mod.c Normal file
View File

@ -0,0 +1,7 @@
extern void foo (void);
void
bar (void)
{
foo ();
}