scc

simple c99 compiler
git clone git://git.simple-cc.org/scc
Log | Files | Refs | Submodules | README | LICENSE

commit a4498a9b7e9ea66405c55fd88568d2ed0c08c79c
parent 5efea60577dfbfa7f418754bfa767a42188d2f1c
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Thu, 24 May 2018 08:59:54 +0100

[nm] Use 'n' for debug symbols

Diffstat:
Mnm/coff32.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/nm/coff32.c b/nm/coff32.c @@ -30,7 +30,7 @@ typeof(SYMENT *ent) switch (ent->n_scnum) { case N_DEBUG: - c = '?'; + c = 'n'; break; case N_ABS: c = 'a';