|
From: Visscher, B. <VI...@rj...> - 2002-07-12 14:29:24
|
Matt,
Have you tried the -Wc switch?
bash$ cc -c longnames.c
void =
this_function_has_a_very_very_long_name_that_needs_to_be_shortened() {}
.....^
%CC-W-LONGEXTERN, The external identifier name exceeds 31 characters; =
truncated
to "THIS_FUNCTION_HAS_A_VERY_VERY_L".
at line number 1 in file RJR_CRISP_DISK:[CRISP.USER.BCV]LONGNAMES.C;1
bash$ cc -Wc/NAMES=3DSHORTENED -c longnames.c
bash$
Bruce
|