Annotation of cci/usr/src/lib/libc/gen/fgcvt.c, revision 1.1

1.1     ! root        1: /* @(#)gcvt.c  4.1 (Berkeley) 12/21/80 */
        !             2: /*
        !             3:  * gcvt  - Floating output conversion to
        !             4:  * no floating point version
        !             5:  */
        !             6: 
        !             7: char *
        !             8: gcvt(number, ndigit, buf)
        !             9: double number;
        !            10: char *buf;
        !            11: {
        !            12:        register char *p2;
        !            13: 
        !            14:        p2 = buf;
        !            15:        *p2++ = '?';
        !            16:        *p2 = '\0';
        !            17:        return(buf);
        !            18: }

unix.superglobalmegacorp.com

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