mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-10 15:20:10 +00:00
3a4cbb4186
* manual/filesys.texi (Testing File Access): Correct description of SUID. 1999-08025 H.J. Lu <hjl@gnu.org> * csu/defs.awk (.end): Only match with leading white spaces. (.align): Likewise. 1999-09-19 Ulrich Drepper <drepper@cygnus.com>
23 lines
428 B
Awk
23 lines
428 B
Awk
/^[ ]*\.end/ { need_end = 1 }
|
|
/^[ ]*\.align/ { if($2 > max) max = $2; }
|
|
|
|
END {
|
|
if(need_end)
|
|
{
|
|
print "#define END_INIT .end _init";
|
|
print "#define END_FINI .end _fini";
|
|
}
|
|
else
|
|
{
|
|
print "#define END_INIT";
|
|
print "#define END_FINI";
|
|
}
|
|
if(max)
|
|
print "#define ALIGN .align", max;
|
|
else
|
|
print "#define ALIGN";
|
|
|
|
print "#include <libc-symbols.h>";
|
|
print "weak_extern (__gmon_start__)";
|
|
}
|