Annotation of researchv10no/libc/gen/_printnum.c, revision 1.1.1.1

1.1       root        1: _printnum(n)
                      2: unsigned n;
                      3: {
                      4:        char d = n%10 + '0';
                      5:        if(n /= 10)
                      6:                _printnum(n);
                      7:        write(2, &d, 1);
                      8: }

unix.superglobalmegacorp.com

This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.