CompuServe Messages

Aztec C bye-bye …

    24-Jan-93 15:48:39
Fm: Vic Wagner 76046,3004
To: Doug Walker 71165,2274
I must report with considerable dismay that at least one reported bug is NOT fixed in SAS C 6.2. It WAS reported via EMITS (which now claims no current record of it). Of course, I didn't get the update until late Friday night (after all you guys had gone home) and started testing immediately (looks like you've fixed another bug we reported AFTER this one). When I sent internet mail reporting that it wasn't fixed, I was told that it wasn't in the current database. In case you can retrieve things from some archive, the number originally assigned was 1500811. If you canNOT find the bug report, here is the entire sample program. void main(int argc, char **argv) { char funnystring[] = "0123456789abcdefghijklmnopqrstuvwxyz"; register char *text = &funnystring[3]; register int count; register char cur; for (count = 36-3; count > 0; count–) { cur = text [1]; *text++ = cur; } puts(funnystring); } try sc optimize link <whateveryoucallthisfile> then run the resulting program.